forked from DigitalGlobe/geoio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 783 Bytes
/
setup.py
File metadata and controls
36 lines (32 loc) · 783 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
25
26
27
28
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
import os
# import __version__
exec(open('geoio/_version.py').read())
install_requires = [
'gdal',
'xmltodict',
'pytz',
'tzwhere',
'ephem',
'numpy',
'tinytools'
]
# optional libraries for additional capabilities:
# 'matplotlib'
# 'cv2'
# 'numba'
tests_require = [
'dgsamples'
]
setup(
name='geoio',
version=__version__,
author='Nathan Longbotham',
author_email='nlongbotham@digitalglobe.com',
packages=find_packages(),
description='Geo image reading/writing tools.',
long_description=open('README.rst').read(),
install_requires=install_requires,
tests_require = tests_require,
scripts=['bin/run_spectral_conversions.py','bin/find_files.py']
)