-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
72 lines (67 loc) · 2.32 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import sys
import os
import sys
import setuptools
from setuptools import find_packages
from setuptools.command.test import test as TestCommand
from distutils.version import StrictVersion
from setuptools import __version__ as setuptools_version
if StrictVersion(setuptools_version) < StrictVersion("38.3.0"):
raise SystemExit(
"Your `setuptools` version is old. "
"Please upgrade setuptools by running `pip install -U setuptools` "
"and try again."
)
def readme():
with open("README.md") as f:
return f.read()
setuptools.setup(
name="ppipe",
version="0.4.9",
packages=find_packages(),
package_data={"ppipe": ["logconfig.json", "aoi.json", "wrs_grid.csv"]},
url="https://github.com/samapriya/Planet-GEE-Pipeline-CLI",
install_requires=[
"bs4>=0.0.1",
"clipboard>=0.0.4",
"earthengine-api>=0.1.138",
"future>=0.16.0",
"google-cloud-storage>=1.5.0",
"planet>=1.1.0",
"pandas>=0.23.0",
"psutil>=5.4.5",
"pyOpenSSL>=19.0.0",
"pyshp>=1.2.12",
"pytest>=3.5.1",
"requests-toolbelt>=0.8.0",
"retrying>=1.3.3",
"simplejson>=3.15.0",
"selenium>=3.13.0",
'pySmartDL==1.2.5;python_version<"3.4"',
'pySmartDL>=1.3.1;python_version>"3.4"',
"pathlib>=1.0.1",
"lxml>=4.1.1",
"beautifulsoup4 >= 4.5.1",
'pypiwin32; platform_system == "Windows"',
'pywin32; platform_system == "Windows"',
],
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",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: GIS",
),
author="Samapriya Roy",
author_email="[email protected]",
description="Planet API Pipeline & Google Earth Engine Batch Assets Manager with Addons",
entry_points={"console_scripts": ["ppipe=ppipe.ppipe:main"]},
)