-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
81 lines (72 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
[metadata]
name = fenics_plotly
description = A package for plotting FEniCS objects using plotly
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/finsberg/fenics-plotly
author = Henrik Finsberg
author_email = [email protected]
version = 2022.0.0
license = MIT
license_file = LICENSE
classifiers =
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
keywords = finite element, mechanics, cardiac, heart
[options]
packages = find:
install_requires =
plotly
numpy
ipywidgets
python_requires = >=3.6
zip_safe = False
[options.packages.find]
exclude =
tests
demos
[options.extras_require]
dev =
black
bump2version
flake8
ipython
mypy
pre-commit
docs =
Sphinx
jupyter-book
myst-parser
pandoc
jupyter
nbsphinx
test =
black
flake8
jupytext
mypy
pytest
pytest-cov
[bdist_wheel]
universal = 1
[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=fenics_plotly -v --cov-report term-missing --cov-report xml
testpaths =
tests
[mypy]
files = fenics_plotly,tests
ignore_missing_imports = true