-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (20 loc) · 827 Bytes
/
setup.py
File metadata and controls
24 lines (20 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from distutils.core import setup
#To prepare a new release
#python setup.py sdist upload
setup(name='imview',
version='0.4.0',
description='Image viewers for geospatial data',
author='David Shean',
author_email='dshean@gmail.com',
license='MIT',
url='https://github.com/dshean/imview',
packages=['imview','imview.lib'],
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=['numpy','gdal','matplotlib', 'pygeotools', 'matplotlib-scalebar', 'matplotlib-colorbar'],
#Note: this will write to /usr/local/bin
#scripts=['imview/imviewer.py','imview/iv.py','imview/stack_view.py', \
#'imview/review_img.py', 'imview/color_hs.py', \
#'imview/gdaladdo_ro.sh', 'imview/hs.sh', 'imview/fig2jpg.sh']
)