-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
109 lines (99 loc) · 2.33 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[tool.poetry]
name = "bodhi_server"
version = "2.6.0"
description = ""
authors = ["karamel <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
SQLAlchemy = "^1.3.20"
psycopg2 = "^2.8.6"
pydantic = { extras = ["dotenv", "email"], version = "^1.9.0" }
pampy = "^0.3.0"
loguru = "^0.5.3"
auto-all = "^1.3.0"
yapf = "^0.30.0"
addict = "^2.4.0"
networkx = "^2.5"
genson = "^1.2.2"
inflection = "^0.5.1"
devtools = "^0.6.1"
orjson = "^3.4.8"
frozendict = "^1.2"
stringcase = "^1.2.0"
Faker = "^6.4.1"
more-itertools = "^8.7.0"
toolz = "^0.11.1"
cytoolz = "^0.11.0"
sqlalchemy-plus = "^0.2.0"
decorator = "^4.4.2"
Random-Word = "^1.0.7"
PyYAML = "^5.4.1"
pglast = "^1.17"
Mako = "^1.1.4"
humanize = "^3.2.0"
maya = "^0.6.1"
fastapi = "^0.63.0"
python-arango = "^7.1.0"
xxhash = "^2.0.0"
pyrsistent = "^0.17.3"
respx = "^0.16.3"
retry = "^0.9.2"
graphviz = "^0.19.1"
pygraphviz = "^1.9"
transitions = { extras = ["diagrams"], version = "^0.8.11" }
alembic = "^1.7.6"
uvicorn = { extras = ["standard"], version = "^0.17.6" }
typer = "^0.4.0"
retworkx = { extras = ["all"], version = "^0.11.0" }
matplotlib = "^3.5.1"
fastapi-websocket-pubsub = "^0.2.0"
asyncpg = "^0.25.0"
httpx = "0.22.0"
prisma = "^0.6.3"
Jinja2 = "^3.1.0"
flytekit = "^0.31.0"
libcst = "^0.4.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
hypothesis = { extras = ["dateutil", "cli"], version = "^6.4.3" }
newsapi-python = "^0.2.6"
numpy = "^1.20.1"
pandas = "^1.2.3"
yapf = "^0.30.0"
flake8 = "^3.8.4"
mypy = "^0.800"
isort = "^5.7.0"
pytest-sugar = "^0.9.4"
faker-schema = "^0.1.4"
vulture = "^2.3"
jupyterlab = "^3.0.12"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "google"
lines_after_imports = 2
force_sort_within_sections = false
known_devtools = ['devtools', 'loguru', 'inflection']
sections = [
'FUTURE',
'STDLIB',
'DEVTOOLS',
'THIRDPARTY',
'FIRSTPARTY',
'LOCALFOLDER',
]
[tool.pytest.ini_options]
addopts = "-ra -q -s --capture=no"
[tool.dephell.main]
from = { format = "poetry", path = "pyproject.toml" }
to = { format = "setuppy", path = "setup.py" }
[tool.vulture]
exclude = ["service/", "imports.py"]
ignore_decorators = ["@app.*", "@require_*"]
ignore_names = ["test_*"]
make_whitelist = true
min_confidence = 80
# paths = ["myscript.py", "mydir"]
sort_by_size = true
# verbose = true