forked from earthdaily/earthdaily-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (46 loc) · 1.34 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
from setuptools import setup, find_packages
# Retrieve release number from text file VERSION.
# See https://packaging.python.org/guides/single-sourcing-package-version/.
with open("earthdaily/__init__.py", encoding="utf8") as f:
for line in f:
if line.startswith("__version__"):
version = line.split("=")[1].split('"')[1]
setup(
name="earthdaily",
packages=find_packages(exclude=['tests']),
version=version,
description="earthdaily: easy authentication, search and retrieval of Earth Data Store collections data",
author="EarthDaily Agro",
python_requires=">=3.10",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=[
"numpy",
"scipy",
"scikit-learn",
"matplotlib",
"joblib",
"psutil",
"pandas",
"geopandas",
"rasterio",
"dask",
"pystac-client",
"pystac",
"requests",
"xarray",
"rioxarray",
"h5netcdf ",
"netcdf4",
"stackstac",
"odc-stac",
"tqdm",
"python-dotenv",
"rich",
],
include_package_data=True,
package_data={"":['*.geojson','*.json']},
license="MIT",
zip_safe=False,
keywords=["Earth Data Store", "earthdaily", "earthdailyagro", "stac"],
)