-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
87 lines (79 loc) · 1.55 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
75
76
77
78
79
80
81
82
83
84
85
86
87
[metadata]
name = modelgraph
version = 1.0.1
description = Tool for extracting dependency graphs from gotran ODE models
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/ComputationalPhysiology/modelgraph
author = Henrik Finsberg
author_email = henriknf@simula.no
license = MIT
license_files = LICENSE
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
keywords = ODE, models, graphs, dependencies
[options]
packages = find:
install_requires =
click
gotran
networkx
importlib-metadata;python_version<'3.8'
python_requires = >=3.9
package_dir =
=src
zip_safe = False
[options.packages.find]
where = src
[options.extras_require]
dev =
Sphinx
black
build
bump2version
flake8
ipython
isort
mypy
pdbpp
pip
pre-commit
sphinx
twine
wheel
docs =
Sphinx
jupytext
myst-parser
sphinx-press-theme
gui =
streamlit
plot =
matplotlib
pydot
test =
pytest
pytest-cov
[flake8]
exclude = docs
ignore = E203, E266, E501, W503, E731
max-line-length = 88
max-complexity = 18
select = B,C,E,F,W,T4
[aliases]
test = pytest
[tool:pytest]
addopts = --cov=src/modelgraph --cov-report html --cov-report xml --cov-report term-missing -v
testpaths =
tests
[mypy]
files = src/modelgraph,tests
ignore_missing_imports = true
exclude = docs
[coverage:run]
omit =
src/modelgraph/gui.py
src/modelgraph/cli.py
src/modelgraph/__main__.py