-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
40 lines (39 loc) · 1.3 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
from setuptools import find_packages, setup
setup(
name="geeadd",
version="1.2.0",
packages=["geeadd"],
data_files=[("", ["LICENSE"])],
url="https://github.com/samapriya/gee_asset_manager_addon",
install_requires=[
"earthengine-api>=0.1.367",
"requests>=2.22.0",
"logzero>=1.5.0",
"beautifulsoup4>=4.9.0",
"jsbeautifier>=1.15.1"
],
license="Apache 2.0",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: GIS",
],
author="Samapriya Roy",
author_email="samapriya.roy@gmail.com",
description="Google Earth Engine Batch Assets Manager with Addons",
entry_points={
"console_scripts": [
"geeadd=geeadd.geeadd:main",
],
},
)