-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
43 lines (38 loc) · 1.27 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
[metadata]
name = cmip_basins
version = 1.0.4
description = Generate CMIP-style ocean basin masks
url = https://github.com/jkrasting/cmip_basins
author = John Krasting
author_email = [email protected]
keywords = cmip cmip6 omip oceanography
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
License :: Public Domain
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
long_description_content_type=text/x-rst
long_description =
**cmip_basins** is a Python package in the public domain
that generates 2-dimensional basin masks for arbitraty
ocean model grids. The tool supports both standard (i.e. "lat-lon")
and non-standard (e.g. "tripolar) ocean model grids.
The package provides two types of basin codes:
1. Classic 10-code CMIP specifications
2. More detailed sub-regions developed at GFDL
More Information
----------------
- Source code: `<http://github.com/jkrasting/cmip_basins>`_
[options]
packages = cmip_basins
zip_safe = False
include_package_data = False
python_requires = >=3.6
scripts =
cmip_basins/basins.py
install_requires =
numpy>=1.17
xarray>=0.16.0