-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (36 loc) · 919 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[tool.poetry]
name = "underflow"
version = "0.1.2"
homepage="https://github.com/danielmartins/underflow"
description = "Pesquisas do stackoverflow via cli"
readme = "README.rst"
authors = ["Daniel Santos <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8"
typer = "^0.1.1"
httpx = "^0.12.1"
click-spinner = "^0.1.8"
tabulate = "^0.8.7"
python-telegram-bot = "^12.6.1"
fastapi = "^0.54.1"
uvicorn = "^0.11.3"
dacite = "^1.4.0"
pydantic = {extras = ["dotenv"], version = "^1.4"}
[tool.poetry.dev-dependencies]
pytest = "^5.2"
flake8 = "^3.7.9"
flake8-isort = "^2.9.1"
coverage = "^5.0.4"
black = "^19.10b0"
pylint = "^2.4.4"
pre-commit = "^2.2.0"
assertpy = "^1.0"
respx = "^0.10.1"
typer-cli = "^0.0.8"
rstvalidator = "^2019.4.13"
requests = "^2.23.0"
[tool.poetry.scripts]
underflow = 'underflow.cli:app'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"