-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
78 lines (75 loc) · 2.14 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
[metadata]
name = hesseflux
description = hesseflux: a Python library to process and post-process Eddy covariance data
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/mcuntz/hesseflux
author = Matthias Cuntz
author_email = mc@macu.de
maintainer = Matthias Cuntz
maintainer_email = mc@macu.de
license = MIT
license_file = LICENSE
platforms = any
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: MacOS
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: Unix
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Atmospheric Science
Topic :: Scientific/Engineering :: Hydrology
Topic :: Scientific/Engineering :: Mathematics
Topic :: Software Development
Topic :: Utilities
project_urls =
Documentation = https://mcuntz.github.io/hesseflux/
Source = https://github.com/mcuntz/hesseflux
Tracker = https://github.com/mcuntz/hesseflux/issues
Changelog = https://github.com/mcuntz/hesseflux/blob/master/CHANGELOG.rst
# Conda-Forge = https://anaconda.org/conda-forge/hesseflux
[options]
packages = find:
package_dir =
= src
install_requires =
numpy
scipy
pandas
pyjams
python_requires = >=3.9
zip_safe = False
[options.packages.find]
where = src
exclude =
tests*
docs*
bin*
example*
[options.extras_require]
doc =
numpydoc>=1.1,<2
jinja2>=2
sphinx>=3,<4
sphinx-rtd-theme>=0.5,<1
seaborn
pyarrow
test =
coverage[toml]>=5.2.1,<6
pytest>=6.0,<7
pytest-cov>=2.11.0,<3