forked from sertit/eoreader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
68 lines (64 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
56
57
58
59
60
61
62
63
64
65
66
67
68
import os
import setuptools
from eoreader.__meta__ import (
__author__,
__author_email__,
__description__,
__documentation__,
__title__,
__url__,
__version__,
)
BASEDIR = os.path.dirname(os.path.abspath(os.path.realpath(__file__)))
with open(os.path.join(BASEDIR, "README.md"), "r", encoding="utf8") as f:
readme = f.read()
setuptools.setup(
name=__title__,
version=__version__,
author=__author__,
author_email=__author_email__,
description=__description__,
long_description=readme,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
install_requires=[
"lxml",
"h5netcdf",
"scipy",
"rasterio>=1.3.0",
"xarray>=0.18.0",
"rioxarray>=0.10.0",
"geopandas>=0.11.0",
"sertit[full]>=1.30.0",
"spyndex>=0.3.0",
"pyresample",
"zarr",
"rtree",
"validators",
"methodtools",
"dicttoxml",
"pystac[validation]",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Software Development :: Libraries :: Python Modules",
],
package_data={"": ["LICENSE", "NOTICE"], "eoreader.data": ["*.xml"]},
include_package_data=True,
python_requires=">=3.9",
project_urls={
"Bug Tracker": f"{__url__}/issues/",
"Documentation": __documentation__,
"Source Code": __url__,
},
)