-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
108 lines (93 loc) · 2.42 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
[tool.poetry]
name = "fixbackend"
version = "0.1.0"
description = ""
authors = ["Some Engineering Inc."]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.12,<4.0"
fastapi = ">=0.109.0"
uvicorn = {extras = ["standard"], version = ">=0.27.0"}
fastapi-users = {extras = ["oauth", "sqlalchemy"], version = ">=12.1.1"}
sqlalchemy = {extras = ["asyncio"], version = ">=2.0.20"}
alembic = ">=1.11.3"
pydantic-settings = ">=2.0.3"
attrs = ">=23.1.0"
jinja2 = ">=3.1.2"
boto3 = ">=1.28.45"
async-lru = ">=2.0.4"
arq = ">=0.25.0"
fixcloudutils = { extras = ["redis", "arango"], version = ">=1.13.2" }
prometheus-fastapi-instrumentator = ">=6.1.0"
websockets = ">=12.0"
cryptography = ">=41.0.6"
aiofiles = ">=23.2.1"
pyinstrument = ">=4.6.1"
cattrs = ">=23.2.3"
bcrypt = "4.0.1"
pyotp = "^2.9.0"
posthog = "^3.5.0"
stripe = "^9.1.0"
kaleido = "0.2.1"
plotly = "^5.21.0"
disposable-email-domains = "^0.0.103"
google-auth = "^2.29.0"
google-api-python-client = "^2.129.0"
redis = ">5"
python-multipart = "0.0.7"
azure-identity = "^1.16.1"
azure-mgmt-resource = "^23.1.1"
msgraph-sdk = "^1.4.0"
azure-mgmt-authorization = "^4.0.0"
azure-mgmt-managementgroups = "^1.0.0"
time-machine = "2.14.2"
msgraph-core = "^1.1.2"
azure-mgmt-resourcegraph = "^8.0.0"
networkx = "^3.3"
asyncpg = "^0.29.0"
psycopg = {extras = ["binary", "pool"], version = "^3.2.1"}
[tool.poetry.group.dev.dependencies]
ipykernel = ">=6.25.1"
mypy = ">=1.5.1"
pytest = ">=7.4.0"
pytest-asyncio = "==0.21.2" # why can't we use latest version?
sqlalchemy-utils = ">=0.41.1"
black = ">=23.7.0"
flake8 = ">=6.1.0"
coverage = {extras = ["toml"], version = ">=7.3.1"}
pytest-cov = ">=4.1.0"
httpx-ws = ">=0.5.2"
urllib3 = "<2" # poetry bug
# all type sheds
types-PyMySQL = "*"
types-pyOpenSSL = "*"
types-python-dateutil = "*"
types-pytz = "*"
types-PyYAML = "*"
types-requests = "*"
types-setuptools = "*"
types-ujson = "*"
types-urllib3 = "*"
types-aiofiles = "*"
types-six = "*"
types-pycurl = "*"
types-redis = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
fixbackend = "fixbackend.__main__:main"
[tool.pytest.ini_options]
[tool.coverage.paths]
source = ["fixbackend", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["fixbackend"]
omit = [
"fixbackend/ids.py",
"fixbackend/inventory/router.py",
"fixbackend/notification/notification_router.py",
]
[tool.coverage.report]
show_missing = true
fail_under = 70