-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
56 lines (48 loc) · 1.35 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
[metadata]
name = pyaro
version = 0.1.2.dev0
author = Heiko Klein, Daniel Heinesen
author_email = [email protected]
description = pyaro py-aerocom reader objects
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Operating System :: OS Independent
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Intended Audience :: Education
Topic :: Scientific/Engineering :: Atmospheric Science
url = https://pyaro.readthedocs.io
[options]
python_version = >=3.10
install_requires =
numpy >= 1.13
importlib-metadata >= 3.6; python_version < "3.10"
package_dir =
=src
packages = pyaro, pyaro.timeseries, pyaro.csvreader
test_require =
tox:tox
[options.extras_require]
optional =
pandas
cf-units # >= 3.3.0 - Earliest release that works with numpy >=2.0.0
xarray
netcdf4
[tox:tox]
min_version = 4.0
env_list =
py312
py311
py310
[testenv]
commands = python3 -m unittest discover -s tests
extras = optional
[options.entry_points]
pyaro.timeseries =
csv_timeseries = pyaro.csvreader:CSVTimeseriesEngine