-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
74 lines (65 loc) · 1.18 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[metadata]
name = patient_abm
description = Agent-based modelling for patient pathways.
author = Faculty
author-email = [email protected]
url = https://faculty.ai/
[options]
zip_safe = False
packages = find:
include_package_data = True
setup_requires = setuptools_scm
package_dir =
=src
# Add here dependencies of your project (semicolon/line-separated), e.g.
install_requires =
click
fhir.resources
numpy
pandas
pydantic
python-dateutil
python-json-logger
requests
xmlschema
[options.packages.find]
where = src
exclude =
tests
# Additional install requirements for running tests
[options.extras_require]
testing =
pytest
pytest-cov
dev =
autoflake
autopep8
black
ipykernel
isort
nox
pytest
pytest-cov
[options.entry_points]
console_scripts =
patient_abm = patient_abm.cli:cli
[tool:pytest]
# Options for py.test:
addopts =
--cov patient_abm --cov-report term-missing
--verbose
norecursedirs =
dist
build
.tox
testpaths = tests
[tool.setuptools_scm]
version_scheme = guess-next-dev
[bdist_wheel]
universal = 1
[flake8]
ignore = E203 W503 W291 W293
exclude =
.tox
dist
.eggs