-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
74 lines (68 loc) · 1.69 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
[metadata]
name = xrft
description = Discrete Fourier Transform with xarray
long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8
url = https://github.com/xgcm/xrft
author = xrft Developers
author_email = [email protected]
license = MIT
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering
project_urls =
Documentation = https://xrft.readthedocs.io/en/latest/
Source = https://github.com/xgcm/xrft
Tracker = https://github.com/xgcm/xrft/issues
[options]
zip_safe = False
packages = find:
platforms = any
include_package_data = True
install_requires =
xarray
dask
numpy
pandas
scipy
python_requires = >=3.6
[bdist_wheel]
universal = 1
[aliases]
test = pytest
[options.extras_require]
io =
cftime
agg =
numpy_groupies
test =
pytest >= 6.2.2
pytest-cov
all =
%(io)s
%(agg)s
%(test)s
[flake8]
exclude = __init__.py,pyproject.toml,.eggs,doc
ignore =
# whitespace before ':' - doesn't work well with black
E203
E402
# line too long - let black worry about that
E501
# do not assign a lambda expression, use a def
E731
# line break before binary operator
W503
[isort]
known_first_party = xrft
known_third_party = xarray,dask,numpy,pandas,scipy,cftime,numpy_groupies,pytest,setuptools