-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.cfg
80 lines (73 loc) · 1.42 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
[metadata]
name = ldrb
description = Laplace-Dirichlet Rule-based algorithm for assigning myocardial fiber orientations.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/finsberg/ldrb
author = Henrik Finsberg
author_email = [email protected]
license = LGPL-3.0
license_files = LICENSE
classifiers =
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
keywords = cardiac modeling, fiber orientations
[options]
packages = find:
install_requires =
h5py
numba<0.58
numpy
python_requires = >=3.9
zip_safe = False
[options.extras_require]
dev =
black
bump2version
flake8
ipython
isort
mypy
pdbpp
pip
pre-commit
sphinx
twine
wheel
docs =
Sphinx
jupyter-book
jupytext
myst-parser
nbsphinx
pandoc
test =
black
cardiac-geometries
flake8
mypy
pytest
pytest-cov
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 88
skip = venv
[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=ldrb --cov-report html -v
testpaths =
tests
[mypy]
files = ldrb,tests
ignore_missing_imports = true