-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 847 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 847 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
37
[build-system]
requires = ["wheel", "setuptools", "toml"]
build-backend = "setuptools.build_meta"
[dependencies]
runtime = [
"jinja2 >=3.0,<4.0.0",
"fastapi >=0.70.0,<1.0",
"python-multipart",
"requests >=2.26.0,<3.0",
"itsdangerous >=1.1.0,<3.0.0",
"pyyaml >=5.3.1,<6.0.0",
"ujson >=4.0.1,<5.0.0",
]
test = [
"pytest >=6.2.4,<7.0.0",
"pytest-asyncio >=0.16.0,<1.0",
"pytest-cov >=2.12.0,<4.0.0",
"coverage >=6.0.2,<7.0",
]
dev = [
"black >=21.9b0,<22",
"isort >=5.9.3,<6.0",
"pre-commit >=2.15.0,<3.0",
"flake8 >=<4.0.1,<5.0",
"uvicorn[standard] >=0.12.0,<0.16.0",
]
[tool.isort]
profile = "black"
known_third_party = ["fastapi", "pydantic", "starlette"]
[tool.black]
target-version = ['py36', 'py37', 'py38', 'py39']
[tool.pytest.ini_options]
testpaths = ["tests", "../tests"]