-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (52 loc) · 1.31 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
58
[tool.poetry]
name = "fastapi_2fa"
version = "0.1.0"
description = ""
authors = ["dfm88 <[email protected]>"]
readme = "README.md"
packages = [{include = "fastapi_2fa"}]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.87.0"
passlib = {extras = ["bycrypt"], version = "^1.7.4"}
pytest = "^7.2.0"
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
celery = {extras = ["pytest"], version = "^5.2.7"}
pydantic = {extras = ["email"], version = "^1.10.2"}
ipdb = "^0.13.9"
python-dotenv = "^0.21.0"
alembic = "^1.8.1"
python-multipart = "^0.0.5"
pytest-cov = "^4.0.0"
factory-boy = "^3.2.1"
pyotp = "^2.7.0"
sqlalchemy = "^1.4.44"
psycopg2-binary = "^2.9.5"
asyncpg = "^0.27.0"
uvicorn = "^0.20.0"
nest-asyncio = "^1.5.6"
fernet = "^1.0.1"
qrcode = {extras = ["pil"], version = "^7.3.1"}
pillow = "^9.3.0"
redis = "^4.3.5"
flower = "1.1.0"
pytest-asyncio = "^0.20.2"
aiosqlite = "^0.17.0"
httpx = "^0.23.1"
pytest-celery = "^0.0.0"
hypothesis = "^6.58.1"
ipykernel = "^6.29.2"
pandoc = "^2.3"
[tool.poetry.group.dev.dependencies]
flake8 = "^5.0.4"
black = "^22.10.0"
isort = "^5.10.1"
bandit = "^1.7.4"
[tool.poetry.group.docs.dependencies]
sphinx = "^7.2.6"
sphinx-rtd-theme = "^2.0.0"
ghp-import = "^2.1.0"
nbsphinx = "^0.9.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"