-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 752 Bytes
/
setup.py
File metadata and controls
23 lines (19 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
# Copyright (c) 2018, Julien Seguinot <seguinot@vaw.baug.ethz.ch>
# GNU General Public License v3.0+ (https://www.gnu.org/licenses/gpl-3.0.txt)
"""Build script for sentinelflow."""
from setuptools import setup
with open('README.rst', 'r') as f:
README = f.read()
setup(name='sentinelflow',
version='0.1.4',
description=('Automated satellite image workflow for Sentinel-2.'),
long_description=README,
long_description_content_type='text/x-rst',
url='http://github.com/juseg/sentinelflow',
author='Julien Seguinot',
author_email='seguinot@vaw.baug.ethz.ch',
license='gpl-3.0',
py_modules=['sentinelflow'],
install_requires=[''],
scripts=['sentinelflow.sh'])