-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (25 loc) · 832 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
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='seplanet',
packages=find_packages(),
include_package_data=True,
version='0.4',
description='High-level functionality for the inventory, download '
'and pre-processing of Planet data',
install_requires=parse_requirements('requirements.txt'),
url='https://github.com/BuddyVolly/seplanet',
author='Andreas Vollrath',
author_email='andreas.vollrath[at]fao.org',
license='MIT License',
keywords=['Planet', 'Remote Sensing', 'Earth Observation',
'Sepal'],
zip_safe=False
)