-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 788 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 788 Bytes
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "krm_template_python"
authors = [{name = "Anthony Corletti", email = "krm_template_python@example.com"}]
dynamic = ["version", "description"]
readme = "README.md"
requires-python = ">=3.9.8"
dependencies = [
"fastapi[all] >=0.70.0",
"gunicorn >=20.1.0",
]
[project.optional-dependencies]
test = [
"pytest >=6.2.5",
"coverage >=6.1.1",
"pytest-cov >=3.0.0",
]
dev = [
"flake8 >=3.9.2",
"mypy >=0.910",
"black >=21.10b0",
"isort >=5.9.3",
"autoflake >=1.4",
"flake8-docstrings >=1.6.0",
"pre-commit >=2.17.0",
]
[tool.isort]
profile = "black"
[project.urls]
Documentation = "https://www.github.com/anthonycorletti/krm_template_python"