-
Notifications
You must be signed in to change notification settings - Fork 56
/
setup.cfg
71 lines (66 loc) · 1.55 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
[metadata]
name = geocat.comp
version = attr: setuptools_scm.get_version
author = GeoCAT Team
author_email = [email protected]
description= GeoCAT-comp is computational component of the GeoCAT project and provides implementations of computational functions for analysis of geosciences data
long_description_content_type=text/markdown
long_description = file: README.md
url = https://geocat-comp.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.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.10, <3.13
packages = find_namespace:
setup_requires =
setuptools_scm
setuptools
pip
install_requires =
cf_xarray>=0.3.1
numpy<2.0
cftime
eofs
metpy
scipy
xarray
xskillscore
packaging
tests_require =
pytest
netcdf4
geocat-datafiles
[options.packages.find]
where = .
include = geocat.*
[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 = test
[aliases]
test = pytest