-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (61 loc) · 1.34 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
[tool.poetry]
name = "demo-access-control-manager"
version = "0.1.0"
description = ""
authors = ["Viktor Sapozhnyk <[email protected]>"]
readme = "README.md"
packages = [
{ include = "app" },
]
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true
no_implicit_optional = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_decorators = true
disallow_any_generics = true
check_untyped_defs = true
warn_redundant_casts = true
warn_return_any = true
warn_unused_ignores = true
plugins = [
"sqlalchemy.ext.mypy.plugin",
"pydantic.mypy"
]
[tool.poetry.dependencies]
python = "^3.11"
uvicorn = "^0.22.0"
fastapi = "^0.99.1"
pydantic = {version = "^1.10.11", extras = ["email"]}
sqlalchemy = {extras = ["mypy"], version = "^2.0.17"}
asyncpg = "^0.28.0"
alembic = "^1.11.1"
pytz = "^2022.1"
httpx = "^0.24.1"
python-dotenv = "^1.0.0"
sqlalchemy-utils = "^0.41.1"
python-jose = "^3.3.0"
requests = "^2.31.0"
psycopg2-binary = "^2.9.9"
pytest = "^7.4.3"
pytest-asyncio = "^0.21.1"
factory-boy = "^3.3.0"
asgi-lifespan = "^2.1.0"
[tool.black]
line-length = 100
target-version = ['py311']
include = '\.pyi?$'
exclude = '''
(
\.git
| env
| dev
| docker-specs
| migrations/versions
)
'''
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"