-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
35 lines (34 loc) · 1.16 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='pygaarst',
version='0.0.1',
description='Tools for geospatial analysis and remote sensing',
author='Chris Waigl',
author_email='[email protected]',
url='https://github.com/chryss/pygaarst',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: GIS',
],
packages=['pygaarst'],
package_data={
'pygaarst': ['Hyperion_Spectral_Coverage.tab'],
},
# tests_require = ['pytest'],
extras_requires={
'all_raster': ['numpy', 'GDAL', 'pyproj'],
'hdf4': ['numpy', 'GDAL', 'pyproj', 'python-hdf4'],
'hdf5': ['numpy', 'GDAL', 'pyproj', 'h5py'],
'vectoroverlay': ['numpy', 'GDAL', 'shapely', 'fiona'],
'plot': ['matplotlib', 'mpl_toolkits.basemap'],
},
)