forked from DigitalGlobe/gbdxtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 825 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
import sys
import os.path
from setuptools import setup, find_packages
open_kwds = {}
if sys.version_info > (3,):
open_kwds['encoding'] = 'utf-8'
req_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), "requirements.txt")
with open(req_path) as f:
requires = f.read().splitlines()
setup(name='gbdxtools',
version='0.17.1',
description='API wrapper and imagery access for the GBDX Platform',
classifiers=[],
keywords='',
author='DigitalGlobe',
author_email='',
url='https://github.com/DigitalGlobe/gbdxtools',
license='MIT',
packages=find_packages(exclude=['docs','tests']),
include_package_data=True,
zip_safe=False,
install_requires=requires,
setup_requires=['pytest-runner'],
tests_require=['pytest','vcrpy']
)