forked from ESA-PhiLab/OpenSarToolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·32 lines (28 loc) · 968 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
import os
from setuptools import setup, find_packages
def parse_requirements(file):
return sorted(set(
line.partition('#')[0].strip()
for line in open(os.path.join(os.path.dirname(__file__), file))
)
-set('')
)
setup(
name='ost',
packages=find_packages(),
include_package_data=True,
version='0.9.3',
description='High-level functionality for the inventory, download '
'and pre-processing of Sentinel-1 data',
install_requires=parse_requirements('requirements.txt'),
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', 'Remote Sensing',
'Synthetic Aperture Radar'],
zip_safe=False,
setup_requires=['pytest-runner'],
tests_require=['pytest']
)