-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
55 lines (49 loc) · 1.11 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
[metadata]
name = hivpy
description = HIV modelling software for Python
long_description = file: README.md
platform = any
version = 0.0.1
classifiers =
Intended Audience :: Science/Research
License :: OSI Approved :: GPL-3.0
Operating System :: OS Independent
Programming Language :: Python :: 3.9
Topic :: Software Development :: Libraries :: Python Modules
[options]
package_dir =
= src
packages = find:
python_requires = >=3.7
install_requires =
pandas<1.4
numpy<2.0.0
scipy
pyyaml
matplotlib
titlecase
sas7bdat
[options.packages.find]
where = src
exclude =
tests
[options.package_data]
# Package the YAML files with default model parameters
hivpy.data = *.yaml
[options.extras_require]
dev =
pytest
pytest-mock
flake8
isort
sphinx
[options.entry_points]
console_scripts =
run_model = hivpy.cli:run_model
[flake8]
max-line-length = 150
per-file-ignores =
# Don't complain about unused imports in __init__.py
*/__init__.py: F401
# Ignore max line length as some column names and descriptions are very long
*/column_names.py: E501