-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (35 loc) · 844 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 = "async-python-sprint-3"
version = "0.1.0"
description = ""
authors = ["Pavel Korsakov <[email protected]>"]
readme = "README.md"
#packages = [{include = "async_python_sprint_3"}]
[tool.poetry.dependencies]
python = "^3.10"
flake8 = "^6.0.0"
isort = "^5.11.4"
pytest = "^7.2.0"
alembic = "^1.9.0"
sqlalchemy = {extras = ["mypy"], version = "^1.4.45"}
pydantic = "^1.10.2"
asyncpg = "^0.27.0"
aiohttp = "^3.8.3"
pytest-asyncio = "^0.20.3"
mypy = "^0.991"
poetry-dotenv-plugin = "^0.1.0"
pytest-aiohttp = "^1.0.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
line_length = 99
multi_line_output = 0
skip = ['.git',
'.mypy_cache',
'.venv',
'venv',
'migrations', ]
[tool.mypy]
python_version = "3.10"
exclude = "tests/|venv/|env.py|migrations"