-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
24 lines (22 loc) · 798 Bytes
/
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
import setuptools
with open("README.md", "r") as readme_file:
long_description = readme_file.read()
setuptools.setup(
name = "SAR-OPT_fusion_GEE",
version = "0.0.1",
author = "Yongjing Mao",
author_email = "[email protected]",
description = "A GEE based python package to characterize and infill gaps of optical satellite images",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/yongjingmao/SAR-OPT_fusion_GEE",
package_dir = {"": "scripts"},
packages = setuptools.find_packages(include=["scripts", "scripts.*"]),
python_requires = ">=3.7",
install_requires = [
"earthengine-api == 0.1.270"
"geopandas == 0.8.1",
"pandas == 1.1.0",
"json == 2.0.9"
]
)