forked from ESA-PhiLab/OpenSarToolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 1 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
from setuptools import setup, find_packages
setup(name='ost',
packages=find_packages(),
include_package_data=True,
version='0.5',
description='High-level functionality for the inventory, download '
'and pre-processing of Sentinel-1 data',
install_requires=['numpy',
'tqdm',
'matplotlib',
'psycopg2',
'requests',
'fiona',
'shapely',
'rtree',
'rasterio',
'descartes',
'pandas',
'geopandas',
'gdal'
],
url='https://github.com/ESA-PhiLab/OpenSarToolkit',
author='Andreas Vollrath',
author_email='andreas.vollrath[at]esa.int',
license='MIT License',
keywords=['Sentinel-1', 'ESA', 'SAR', 'radar', 'Earth Observation'],
zip_safe=False)