-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (46 loc) · 1010 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
41
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "api"
version = "0.1.0"
description = ""
authors = []
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
fastapi = "^0.78.0"
uvicorn = {extras = ["standard"], version = "0.17.5"}
SQLAlchemy = "^1.4.36"
alembic = "^1.7.7"
psycopg2-binary = "2.9.3"
pytest = "^7.1.2"
factory-boy = "3.2.1"
pytest-factoryboy = "2.1.0"
SQLAlchemy-Utils = "^0.38.2"
requests = "^2.27.1"
pydantic = {extras = ["email"], version = "^1.9.1"}
databases = "^0.6.0"
asyncpg = "^0.25.0"
aiopg = "^1.3.3"
passlib = "^1.7.4"
python-jose = "^3.3.0"
ipython = "^8.3.0"
python-multipart = "^0.0.5"
pytest-asyncio = "^0.18.3"
httpx = "^0.23.0"
orjson = "^3.7.2"
[tool.poetry.dev-dependencies]
flake8 = "4.0.1"
black = "22.1.0"
isort = "5.10.1"
rope = "0.22.0"
flake8-isort = "4.1.1"
mypy = "0.931"
sqlalchemy-stubs = "0.4"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = "-ra -q"
testpaths = [
"tests",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"