-
Notifications
You must be signed in to change notification settings - Fork 67
/
pyproject.toml
45 lines (41 loc) · 952 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
[tool.poetry]
name = "fastapi-boilerplate"
version = "0.1.0"
description = "FastAPI Boilerplate"
authors = ["Abbas <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.11"
alembic = "^1.9.4"
SQLAlchemy = "^2.0.4"
PyJWT = "^2.6.0"
uvicorn = "^0.20.0"
fastapi = "^0.92.0"
celery = "^5.2.7"
gunicorn = "^20.1.0"
fastapi-event = "^0.1.3"
ujson = "^5.7.0"
click = "^8.1.3"
greenlet = "1.1.3"
redis = "^4.5.4"
pydantic = "^1.10.5"
isort = "^5.12.0"
black = "^23.1.0"
pylint = "^2.16.2"
asyncpg = "^0.27.0"
pytest = "^7.2.1"
httpx = "^0.23.3"
pyyaml = "^6.0"
email-validator = "^1.3.1"
python-jose = "^3.3.0"
cryptography = "^41.0.0"
passlib = "^1.7.4"
bcrypt = "^4.0.1"
faker = "^17.0.0"
pytest-asyncio = "^0.20.3"
[tool.poetry.dev-dependencies]
behave = "^1.2.6"
[tool.poetry.group.dev.dependencies]
black = {version = "^23.1.0", allow-prereleases = true}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"