-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
45 lines (36 loc) · 878 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
43
44
45
# setup.py configuration file
# https://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
[metadata]
name = qr_tabulator
[options]
packages = qr_tabulator
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 =
jmespath
python-dateutil
pytest
pytest-mock
requests-mock
tox
xlrd
pyyaml
pyarrow
pandas
numpy
# "git+https://github.com/CDCgov/phdi#egg=phdi"
# [options.extras_require]
# dev =
[flake8]
max-line-length=100
[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.*