forked from SciTools/cf-units
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
67 lines (64 loc) · 1.63 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
[metadata]
author = SciTools Developers
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering
description = Units of measure as required by the Climate and Forecast (CF) metadata conventions
download_url = https://github.com/SciTools/cf-units
keywords =
units
cf
netcdf
science
oceanography
meteorology
climate
license = BSD
license_files = LICENSE
long_description = file: README.md
long_description_content_type = text/markdown
name = cf-units
project_urls =
Code = https://github.com/SciTools/cf-units
Discussions = https://github.com/SciTools/cf-units/discussions
Issues = https://github.com/SciTools/cf-units/issues
url = https://github.com/SciTools/cf-units
version = attr: cf_units.__version__
[options]
include_package_data = True
install_requires =
cftime >=1.2
jinja2
numpy ==1.26.4
# udunits2 cannot be installed with pip, and it is expected to be
# installed separately.
packages = find_namespace:
python_requires =
>=3.9
zip_safe = False
[options.extras_require]
latex =
antlr4-python3-runtime ==4.11.1 # To update this, see cf_units/_udunits2_parser/README.md
docs =
sphinx
test =
codecov
cython
jinja2
pip
pytest
pytest-cov
all =
pre-commit
%(latex)s
%(docs)s
%(test)s
[aliases]
test = pytest