-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
44 lines (30 loc) · 833 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
[tool.poetry]
name = "fastapi-clean-architecture"
version = "1.0"
description = "Clean FastAPI architecture"
license = "MIT"
authors = ["Maxim Bigin <[email protected]>"]
readme = "README.md"
repository = "https://github.com/flaiers/fastapi-clean-architecture"
[tool.poetry.dependencies]
python = "^3.10"
uvicorn = "^0.18.3"
gunicorn = "^20.1.0"
Flask = "^2.2.2"
Flask-Admin = "^1.6.0"
fastapi = "^0.79.1"
fastapi-pagination = "^0.9.3"
pydantic = {extras = ["email", "dotenv"], version = "^1.10.2"}
alembic = "^1.8.1"
SQLAlchemy = "^1.4.41"
pytorm = "^0.1.1"
asyncpg = "^0.26.0"
aio-pika = "^8.2.0"
psycopg2-binary = "^2.9.3"
[tool.poetry.dev-dependencies]
pre-commit = "^2.20.0"
wemake-python-styleguide = "^0.16.1"
mypy = "^0.971"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"