-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
51 lines (45 loc) · 1.28 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
install_requires = [
"torch",
"segmentation-models-pytorch",
"numpy",
"matplotlib",
"pillow",
"xarray",
"zarr",
"dask",
"netcdf4",
"pandas",
"planetary-computer",
"pyproj",
"pystac-client",
"rasterio",
"requests",
"stackstac",
"rioxarray",
"shapely",
"fsspec",
"aiohttp",
"odc-algo"
]
setup(name='earthnet-minicuber',
version='0.1.3',
description="EarthNet Minicuber",
author="Vitus Benson, Christian Requena-Mesa",
author_email="[email protected]",
url="https://earthnet.tech",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
],
packages=['earthnet_minicuber', 'earthnet_minicuber.provider', 'earthnet_minicuber.provider.s2'],#find_packages(),
install_requires=install_requires,
extras_require={
"EE": ["earthengine-api","wxee","eemont"],
}
)