-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (36 loc) · 985 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
[tool.poetry]
name = "shepherd-2"
version = "0.1.0"
description = "An implementation of shepherd using fastapi"
authors = ["fenjalien <[email protected]>", "Edwin Shepherd"]
packages = [{ include = "app" }]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.65.2"
aiofiles = "^0.6.0"
uvicorn = "^0.12.3"
typer = "^0.3.2"
pretty-errors = "^1.2.19"
mypy = "^0.961"
pytest = "^7.1.2"
requests = "^2.28.0"
pytest-timeout = "^2.1.0"
python-multipart = "^0.0.5"
loguru = "^0.6.0"
psutil = "^5.9.1"
[tool.poetry.dev-dependencies]
autopep8 = "^1.6.0"
pylint = "^2.6.0"
pytest = "^7.1.2"
[tool.pytest.ini_options]
testpaths = ["test/"]
filterwarnings = ["ignore: There is no current event loop"]
addopts = "-vx --log-level 10"
[tool.mypy]
warn_unused_configs = true
[[tool.mypy.overrides]]
module = ["uvicorn.*", "pretty_errors.*"]
ignore_missing_imports = "True"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"