forked from NCAR/geocat-viz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
73 lines (68 loc) · 1.6 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
[metadata]
name = geocat.viz
version = attr: setuptools_scm.get_version
author = GeoCAT Team
author_email = [email protected]
description= GeoCAT-viz is vizualization component of the GeoCAT project and
provides implementations of convenience functions for publication-ready plotting
of geosciences data
long_description_content_type=text/markdown
long_description = file: README.md
url = https://geocat-viz.readthedocs.io
license = Apache-2.0
license_files = file: LICENSE
classifiers =
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering
[options]
zip_safe = False
include_package_data = True
python_requires = >=3.9, <3.13
package_dir =
=src
packages = find_namespace:
setup_requires =
setuptools_scm
setuptools
pip
install_requires =
matplotlib
xarray
numpy
cartopy
cmaps
setuptools
scikit-learn
metpy
tests_require =
pytest
pytest-mpl
[options.packages.find]
where = src
[options.extras_require]
docs =
ipykernel
ipython
sphinx_rtd_theme
jupyter_client
matplotlib-base
sphinx-book-theme
myst-nb
sphinx-design
geocat-datafiles
geocat-viz
nbsphinx
netcdf4
[tool:pytest]
python_files = test_*.py
testpaths = tests
[aliases]
test = pytest