forked from eX-Mech/pymech
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
78 lines (65 loc) · 1.67 KB
/
Copy pathsetup.cfg
File metadata and controls
78 lines (65 loc) · 1.67 KB
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
[metadata]
name = pymech
author = eX-Mech Developers
author_email = jacopo.canton@gmail.com
description = A Python suite of routines for Nek5000 and Simson.
long_description = file: README.md
long_description_content_type = text/markdown
license = GNU General Public License v3 or later (GPLv3+)
license_file = LICENSE
url = https://github.com/eX-Mech/pymech
project-urls =
documentation = https://pymech.readthedocs.io
classifiers =
Intended Audience :: Science/Research
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: OS Independent
[options]
python_requires = >= 3.6
packages = find:
install_requires =
xarray >= 0.15
setup_requires =
setuptools>=39.2.0
setuptools_scm
[options.extras_require]
full =
mayavi
rich
docs =
sphinx
sphinx-book-theme
myst-nb
importlib_metadata; python_version < "3.8"
tests =
%(full)s
pytest >= 6.0.0
pytest-cov
pytest-xdist >= 2.0.0
dev =
%(docs)s
%(tests)s
pre-commit
[flake8]
max-line-length = 88
ignore = W503, E203, E501
[coverage:run]
source = pymech
[coverage:report]
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain about missing debug-only code:
def __repr__
if self\.debug
# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError
# Don't complain if non-runnable code isn't run:
if 0:
if __name__ == .__main__.:
ignore_errors = True