forked from ESA-PhiLab/OpenSarToolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·35 lines (31 loc) · 1.07 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
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.10',
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, Petr Sevcik',
author_email='andreas.vollrath[at]esa.int, petr.sevcik[at]eox.at',
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'],
extras_require={
'test': parse_requirements('requirements_test.txt')
},
)