-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (38 loc) · 974 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
[tool.poetry]
name = "Base FastApi project"
version = "0.1.0"
description = ""
authors = ["RamilAbzalov <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.75.0"
python-multipart = "^0.0.5"
email-validator = "^1.1.3"
requests = "^2.27.1"
passlib = "^1.7.4"
SQLAlchemy = "^1.4.32"
alembic = "^1.7.7"
Jinja2 = "^3.0.3"
psycopg2-binary = "^2.9.3"
boto3 = "^1.21.22"
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
python-dotenv = "^0.20.0"
strawberry-graphql = "^0.104.0"
sqlmodel = "^0.0.6"
bcrypt = "^3.2.0"
PyJWT = "^2.3.0"
uvicorn = {extras = ["standard"], version = "^0.17.6"}
inflection = "^0.5.1"
gunicorn = "^20.1.0"
[tool.poetry.dev-dependencies]
isort = "^4.3.21"
sqlalchemy-stubs = "^0.3"
pytest-cov = "^2.8.1"
mypy = "^0.942"
flake8 = "^4.0.1"
autopep8 = "^1.6.0"
wemake-python-styleguide = "^0.16.1"
pytest = "^7.1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"