forked from jonas-eberle/esa_sentinel
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 773 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
setup(name='sentinel_api',
packages=find_packages(),
include_package_data=True,
setup_requires=['setuptools_scm'],
use_scm_version=True,
description='ESA Sentinel Search & Download API',
classifiers=[
'Programming Language :: Python',
],
install_requires=['gdal>=1.11.3',
'spatialist>=0.3',
'progressbar2',
'requests>=2.8.1'],
url='https://github.com/jonas-eberle/esa_sentinel.git',
author='Jonas Eberle, John Truckenbrodt, Felix Cremer',
author_email='jonas.eberle@uni-jena.de, john.truckenbrodt@uni-jena.de, felix.cremer@uni-jena.de',
license='MIT',
zip_safe=False)