-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
57 lines (53 loc) · 1.12 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
[tool.poetry]
name = "itmo_requestor"
version = "0.0.1"
description = ""
authors = ["Emiliy Feldman", "Maksim Lukin"]
maintainers = ["Emiliy Feldman", "Maksim Lukin"]
readme = "README.md"
packages = [
{ include = "requestor" },
]
[tool.poetry.dependencies]
python = ">=3.8,<3.10.0"
sqlalchemy = "^1.4.17"
psycopg2-binary = "^2.8.6"
pydantic = "^1.8.2"
orjson = "^3.5.3"
alembic = "^1.6.5"
aiohttp = "^3.7.4"
asyncpg = "^0.23.0"
aiogram = "^2.22.2"
uvloop = "^0.17.0"
gspread = "^5.6.0"
asgiref = "3.5.2"
rectools = "^0.2.0"
boto3 = "^1.26.2"
pandas = "^1.5.1"
[tool.poetry.dev-dependencies]
black = "22.3.0"
isort = "5.10.1"
pylint = "2.17.6"
mypy = "0.931"
flake8 = "4.0.1"
bandit = "1.7.4"
pytest = "7.1.2"
radon = "5.1.0"
coverage = "6.4.2"
autopep8 = "1.6.0"
codespell = "2.1.0"
pytest-subtests = "0.8.0"
pep8-naming = "0.12.1"
pytest-cov = "2.12.1"
pytest-httpserver = "^1.0.0"
pytest-asyncio = "^0.15.1"
click = "^8.1.3"
Werkzeug = "^2.2.2"
pytest-mock = "^3.10.0"
asyncmock = "^0.4.2"
[tool.black]
line-length = 99
target-version = ["py37", "py38"]
[build-system]
requires = ["poetry>=1.0.5"]
build-backend = "poetry.masonry.api"