-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
57 lines (52 loc) · 1.59 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
[metadata]
name = gars_field
description = Toolkit to generate Global Area Reference System grids.
version = attr: gars_field.__version__
keywords = GARS, grid
long_description = file: README.rst
long_description_content_type = text/x-rst
license = BSD License
license_file = LICENSE
platform = any
author = gars-field Contributors
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
Natural Language :: English
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Scientific/Engineering :: GIS
url = https://github.com/corteva/gars-field
download_url = http://python.org/pypi/gars-field
project_urls =
Documentation = https://github.com/corteva/gars-field
Release Notes = https://github.com/corteva/gars-field/releases
Bug Tracker = https://github.com/corteva/gars-field/issues
Source Code = https://github.com/corteva/gars-field
[options]
packages = find:
zip_safe = False # https://mypy.readthedocs.io/en/stable/installed_packages.html
include_package_data = True
python_requires = >=3.10
install_requires =
shapely
pyproj>=3.0.0
tests_require = pytest-cov
[options.package_data]
gars_field =
py.typed
[options.packages.find]
include = gars_field*
[options.extras_require]
dev =
pytest-cov
all =
%(dev)s
[bdist_wheel]
universal = 1