-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 716 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import sys
from setuptools import setup, find_packages
open_kwds = {}
if sys.version_info > (3,):
open_kwds['encoding'] = 'utf-8'
setup(name='gbdx-interactive',
version='0.0.2',
description='gbdxtools, but interactive.',
classifiers=[],
keywords='',
author='Nate Ricklin',
author_email='nate.ricklin@digitalglobe.com',
url='https://github.com/nricklin/gbdx-interactive',
license='MIT',
packages=find_packages(exclude=['docs','tests']),
include_package_data=True,
zip_safe=False,
install_requires=['boto3',
'gbdxtools>=0.9.2'],
setup_requires=['pytest-runner'],
tests_require=['pytest','vcrpy']
)