forked from metno/pyaerocom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
102 lines (96 loc) · 2.38 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
91
92
93
94
95
96
97
98
99
100
101
102
[metadata]
name = pyaerocom
version = 0.13.1.post1
author = MET Norway
description = pyaerocom model evaluation software
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/metno/pyaerocom
project_urls =
Bug Tracker = https://github.com/metno/pyaerocom/issues
Documentation = https://pyaerocom.readthedocs.io
Source Code = https://github.com/metno/pyaerocom
license = GPLv3
classifiers =
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Operating System :: OS Independent
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
Intended Audience :: Education
Topic :: Scientific/Engineering :: Atmospheric Science
[options]
python_requires = >=3.8
install_requires =
# scitools-iris>=3.1.0,!=3.2.*
xarray>=0.16.0
# cartopy>=0.16.0,!=0.20.* # cartopy-0.20+ fails to install on CI
matplotlib>=3.0.1
scipy>=1.1.0
pandas>=0.23.0
seaborn>=0.8.0
geonum
LatLon23 # required by geonum
SRTM.py # required by geonum
numpy>=0.12.0
simplejson
requests
reverse-geocode
tqdm
openpyxl
geojsoncontour
cf-units!=3.0.1.post0; python_version == "3.10.*" # https://github.com/SciTools/cf-units/issues/218
typer>=0.4.0
package_dir =
pyaerocom = pyaerocom
packages =
pyaerocom
pyaerocom.io
pyaerocom.plot
pyaerocom.aeroval
pyaerocom.scripts
pyaerocom.data
include_package_data = True
zip_safe = False
[options.entry_points]
console_scripts =
pya = pyaerocom.scripts.cli:main
[options.extras_require]
proj-legacy = # proj<8, e.g CI
cartopy>=0.16.0,!=0.20.*
scitools-iris>=3.1.0,!=3.2.*
proj8 =
cartopy>=0.20
scitools-iris>=3.2
docs =
sphinx>=4.2.0
sphinxcontrib-napoleon
sphinx_rtd_theme
sphinx-argparse
nbsphinx
test =
pytest>=6.0
pytest-dependency
pytest-cov
packaging
lint =
mypy>=0.931
types-requests
types-setuptools
types-simplejson
#pylint>=2.9
#pycodestyle>=2.8
#pydocstyle[toml]>=6.1
dev =
%(test)s
pytest-sugar
pytest-testmon
%(lint)s
pre-commit
[pycodestyle]
max-line-length = 99
#max_doc_length = 99
extend-ignore = E203