-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
39 lines (35 loc) · 870 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "firestorefastapi"
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",
"google-cloud-firestore >=2.3.4"
]
[project.optional-dependencies]
test = [
"pytest >=6.2.5",
"coverage >=6.1.1",
"pytest-cov >=3.0.0",
"mock-firestore >=0.10.0"
]
dev = [
"mypy >=0.910",
"flake8 >=3.9.2",
"black >=21.10b0",
"isort >=5.9.3",
"autoflake >=1.4",
"flake8-docstrings >=1.6.0",
"pre-commit >=2.4.0",
]
[project.urls]
Home = "https://github.com/anthonycorletti/firestore-fastapi"
[tool.isort]
profile = "black"