forked from vascobnunes/fetchLandsatSentinelFromGoogleCloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (27 loc) · 976 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
25
26
27
28
29
30
31
32
try:
from setuptools import setup
setup_kwargs = {'entry_points': {'console_scripts': ['fels=fels.fels:main']}}
except ImportError:
from distutils.core import setup
setup_kwargs = {'scripts': ['bin/fels']}
tag = '1.3.7'
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='FeLS',
version=tag,
py_modules=['fels'],
description='Fetch Landsat & Sentinel Data from google cloud',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud',
author='vascobnunes',
author_email='vascobnunes@gmail.com',
license='GPL',
zip_safe=False,
packages=['fels'],
package_data={'': ['data/*']},
include_package_data=True,
install_requires=['numpy', 'requests', 'shapely', 'geopandas',],
dependency_links=['https://www.conan.io/source/Gdal/2.1.3/osechet/stable'],
**setup_kwargs)