forked from developmentseed/landsat-util
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (44 loc) · 1.12 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
# Landsat Util
# License: CC0 1.0 Universal
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from landsat import __version__
def readme():
with open('README.rst') as f:
return f.read()
test_requirements = [
'nose>=1.3.6',
'mock>=1.0.1'
]
setup(
name='landsat-util',
version=__version__,
description='A utility to search, download and process Landsat 8' +
' satellite imagery',
long_description=readme(),
author='Development Seed',
author_email='[email protected]',
scripts=['bin/landsat'],
url='https://github.com/developmentseed/landsat-util',
packages=['landsat'],
include_package_data=True,
license='CCO',
platforms='Posix; MacOS X; Windows',
install_requires=[
'requests==2.5.3',
'python-dateutil>=2.4.2',
'numpy>=1.9.2',
'termcolor>=1.1.0',
'rasterio>=0.21.0',
'six==1.9.0',
'scipy>=0.15.1',
'scikit-image>=0.11.3',
'homura>=0.1.1',
'boto>=2.38.0'
],
test_suite='nose.collector',
test_require=test_requirements
)