forked from DigitalGlobe/gbdxtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1.09 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
import sys
from setuptools import setup, find_packages
open_kwds = {}
if sys.version_info > (3,):
open_kwds['encoding'] = 'utf-8'
# with open('README.md', **open_kwds) as f:
# readme = f.read()
# long_description=readme,
setup(name='gbdxtools',
version='0.9.3',
description='Additional s3 functionality.',
classifiers=[],
keywords='',
author='Kostas Stamatiou',
author_email='kostas.stamatiou@digitalglobe.com',
url='https://github.com/kostasthebarbarian/gbdxtools',
license='MIT',
packages=find_packages(exclude=['docs','tests']),
include_package_data=True,
zip_safe=False,
install_requires=['requests==2.12.1',
'boto==2.39.0',
'gbdx-auth==0.2.0',
'pygeoif==0.6',
'ndg-httpsclient==0.4.2',
'six==1.10.0',
'future==0.15.2',
'geomet==0.1.1'
'shapely'],
setup_requires=['pytest-runner'],
tests_require=['pytest','vcrpy']
)