-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
75 lines (69 loc) · 1.65 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
[metadata]
name = xwavelet
description = Continuous wavelet Transform with xarray
long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8
url = https://github.com/roxyboy/xwavelet
author = xwavelet Developers
author_email = tuchida@fsu.edu
license = "MIT"
license_files = LICENSE
classifiers =
Development Status :: 2 - Pre-Alpha copy
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Scientific/Engineering
project_urls =
Documentation =
Source = https://github.com/roxyboy/xwavelet
Tracker = https://github.com/roxyboy/xwavelet/issues
[options]
zip_safe = False
packages = find:
platforms = any
include_package_data = True
install_requires =
xarray
dask
numpy
pandas
scipy
cftime
python_requires = >=3.7
[bdist_wheel]
universal = 1
[aliases]
test = pytest
[options.extras_require]
io =
cftime
agg =
numpy_groupies
test =
pytest >= 7.0.0
pytest-cov
xrft
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 = xwavelet
known_third_party = xarray,dask,numpy,pandas,scipy,cftime,xoa,numpy_groupies,pytest,setuptools