-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
56 lines (52 loc) · 1.87 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
52
53
54
55
56
[tool.poetry]
name = "aks_demo"
version = "1.0.0"
description = "FastAPI webserver for the Avanade Demo"
authors = ["Guillaume Bournique"]
[tool.poetry.dependencies]
aiofiles = "^0.6.0" # Apache 2.0
python = "^3.8.0" # PSF
python-multipart = "^0.0.5" # Apache 2.0
fastapi = "^0.62.0" # MIT
requests = "^2.22" # Apache 2.0
uvicorn = "^0.13.2" # BSD 3
[tool.poetry.dev-dependencies]
autoflake = "^1.4" # MIT
black = "19.10b0" # MIT
dateparser = "^1.0.0" # BSD 3
flask = "^1.1.2" # BSD 3
isort = "4.3.4" # MIT
locust = "^1.4.3" # MIT
jsonschema = "^3.2.0" # MIT
networkx = "^2.5" # MIT
pylint = "^2.6.0" # GPL
pytest = "6.0.0" # MIT
pytest-cov = "^2.10.1" # MIT
pytest-env = "^0.6.2" # MIT
pre-commit = "^2.8.2" # MIT
wrapt = "^1.12.1" # MIT
yamllint = "^1.25.0" # GNU
[tool.pytest.ini_options]
testpaths = "tests"
filterwarnings = '''
ignore::UserWarning
'''
markers = '''
integration
'''
python_files = ["tests.py", "test_*", "*_tests.py"]
addopts = '''
--strict
--tb=short
--cov=.
--cov-branch
--cov-report=term-missing
--cov-report=html
--no-cov-on-fail
--cov-fail-under=0
--ignore=deployment/
'''
env = ["PYTEST_ENABLED=1"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"