-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
51 lines (47 loc) · 1.16 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "cloudrunfastapi"
authors = [{name = "Anthony Corletti", email = "[email protected]"}]
readme = "README.md"
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["version", "description"]
dependencies = [
"fastapi >=0.70.1",
"gunicorn >=20.1.0",
"uvicorn >=0.16.0",
"SQLAlchemy >=1.4.22,<1.4.36",
"SQLAlchemy-Utils >=0.37.8",
"psycopg2-binary >=2.9.1",
"alembic >=1.6.5",
"cryptography >=3.4.7",
"authlib >=0.15.4",
"PyJWT >=2.1.0",
"passlib >=1.7.4",
"email-validator >=1.1.3",
"python-multipart >=0.0.5",
"bcrypt >=3.2.0",
"sqlmodel >=0.0.6",
"python-dateutil >=2.8.2",
"python-dotenv >=0.20.0",
]
[project.optional-dependencies]
test = [
"pytest >=6.2.5",
"mypy >=0.910",
"coverage >=6.1.1",
"pytest-cov >=3.0.0",
]
dev = [
"flake8 >=3.9.2",
"black >=21.10b0",
"isort >=5.9.3",
"autoflake >=1.4",
"flake8-docstrings >=1.6.0",
"pre-commit >=2.17.0",
]
[project.urls]
Home = "https://github.com/anthonycorletti/cloudrun-fastapi"
[tool.isort]
profile = "black"