-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
42 lines (36 loc) · 892 Bytes
/
setup.cfg
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
# setup.py configuration file
# https://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
[metadata]
name = confidential_backend
[options]
packages = confidential_backend
zip_safe = False
include_package_data = True
# abstract requirements;
# concrete requirements belong in requirements.txt
# https://caremad.io/posts/2013/07/setup-vs-requirement/
install_requires =
authlib
flask
flask-cors
flask-session
gunicorn
python-jose[cryptography]
python-json-logger
redis
requests
requests-cache
[options.extras_require]
dev =
pytest
pytest-mock
pytest-redis
requests-mock
[tool:pytest]
addopts = --color yes --verbose
console_output_style = classic
filterwarnings =
# only print each warning once per module
module
# error on bad assertions
error:.*assertion is always true.*