-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
51 lines (47 loc) · 1.52 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
import os
from setuptools import find_packages, setup
def readme():
with open("README.md") as f:
return f.read()
setup(
name="geeup",
version="1.0.1",
python_requires=">=3.6",
packages=find_packages(),
url="https://github.com/samapriya/geeup",
install_requires=[
"pandas==2.0.3",
"earthengine-api>=0.1.370",
"requests>=2.10.0",
"retrying>=1.3.3",
"natsort>=8.1.0",
"psutil>=5.4.5",
"cerberus>=1.3.4",
"requests-toolbelt>=0.7.0",
"pytest>=3.0.0",
"pathlib>=1.0.1",
"lxml>=4.1.1",
"oauth2client>=4.1.3",
],
license="Apache 2.0",
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 6 - Mature",
"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",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: GIS",
],
author="Samapriya Roy",
author_email="[email protected]",
description="Simple Client for Earth Engine Uploads",
entry_points={"console_scripts": ["geeup=geeup.geeup:main"]},
)