forked from DigitalGlobe/gbdxtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (28 loc) · 922 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
30
31
32
33
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()
# with open('README.md', **open_kwds) as f:
# readme = f.read()
# long_description=readme,
setup(name='gbdxtools',
version='0.16.3',
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']
)