-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
65 lines (56 loc) · 1.47 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
[metadata]
name = hdc-colors
description = Color definitions for HDC data
version = attr: hdc.colors._version.__version__
author = WFP-VAM
author_email =
maintainer = WFP-VAM
maintainer_email =
long_description_content_type = text/markdown
long_description = file: README.md
platforms = any
license = MIT License
url = https://github.com/WFP-VAM/hdc-colors/
project_urls =
Documentation = https://hdc-colors.readthedocs.io/en/latest/
Bug Reporting = https://github.com/WFP-VAM/hdc-colors/issues
classifiers =
License :: OSI Approved :: MIT License
Intended Audience :: Developers
Development Status :: 2 - Pre-Alpha
Operating System :: OS Independent
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Natural Language :: English
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Scientific/Engineering :: GIS
[options]
python_requires = >=3.8
include_package_data = false
zip_safe = false
packages = find_namespace:
install_requires =
numpy
[options.extras_require]
test =
pytest
ui =
rich
click>=1.8.6
mpl =
matplotlib
all =
%(ui)s
%(mpl)s
[options.packages.find]
include =
hdc*
[options.entry_points]
console_scripts =
hdc-colors-table = hdc.colors.cli.table:cli [ui]
hdc-colors-create-ctable = hdc.colors.cli.create_ctable:cli
[aliases]
# Define setup.py command aliases here
test = pytest