-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
55 lines (52 loc) · 1.91 KB
/
setup.py
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
from pathlib import Path
from setuptools import setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="te_algorithms",
version="2.1.16",
description="Library supporting analysis of land degradation.",
long_description=long_description,
url="https://github.com/ConservationInternational/trends.earth-algorithms",
author="Conservation International",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: GIS",
"OSI Approved :: GNU General Public License (GPL)"
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
keywords="land degradation LDN SDG sustainable development goals",
packages=[
"te_algorithms",
"te_algorithms.gdal.land_deg",
"te_algorithms.gdal",
"te_algorithms.gee",
"te_algorithms.api",
],
package_dir={"te_algorithms": "te_algorithms"},
package_data={"te_algorithms": ["version.json", "data/*"]},
include_package_data=True,
install_requires=[
"openpyxl>=3.1.3",
"backoff>=2.1.0",
"marshmallow>=3.21.3",
"marshmallow-dataclass[enum, union]==8.7.0",
"defusedxml>=0.7.1",
"te_schemas @ git+https://github.com/ConservationInternational/[email protected]",
],
extras_require={
"api": ["boto3>=1.16", "GDAL>=3.0.0"],
"gee": ["earthengine-api==0.1.232"],
"gdal": ["GDAL>=3.0.0", "numpy>=1.17.0"],
"numba": ["numba>=0.54.1"],
"dev": ["check-manifest"],
"test": ["coverage"],
},
)