-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
90 lines (79 loc) · 1.83 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
88
89
90
[metadata]
name = fluidsht
description = Spherical Harmonics Transform API
long_description = file: README.rst
keywords = spherical harmonics, shtns, shtools
author = FluidDyn Developers
author_email = [email protected]
license = CeCILL License
license_file = LICENSE.txt
url = https://foss.heptapod.net/fluiddyn/fluidsht
classifiers =
Development Status :: 3 - Alpha
# Development Status :: 4 - Beta
# Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Intended Audience :: Education
Topic :: Scientific/Engineering
License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
[options]
setup_requires =
setuptools
numpy
transonic>=0.4.1
install_requires =
pyshtools
transonic>=0.4.1
fluiddyn
cached_property ; python_version < '3.8'
# shtns
packages=find:
[options.extras_require]
test =
pytest
doc =
sphinx
sphinx_rtd_theme
numpydoc
dev =
ipython
%(doc)s
%(test)s
flake8
# plot =
# cartopy
# gmt-python
[flake8]
ignore = E501,E225,E226,E303,E201,E202,E203,W503
[coverage:run]
source = ./fluidsht
data_file = .coverage/coverage
omit = */test*.py
*/_try_*.py
[coverage:report]
show_missing = True
exclude_lines =
raise ValueError
raise NotImplementedError
raise ImportError
except ImportError:
except ModuleNotFoundError:
except IndexError:
except AttributeError:
except KeyError:
except ValueError
if test:
if check:
if __name__ == "__main__":
if "sphinx" in sys.modules:
[coverage:html]
directory = .coverage
[coverage:xml]
output = .coverage/coverage.xml
[isort]
line_length = 82
known_first_party = fluiddyn,fluidsht
multi_line_output = 3