-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
21 lines (17 loc) · 912 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
from distutils.core import setup
#To prepare a new release
#python setup.py sdist upload
setup(name='pygeotools',
version='1.1.1',
description='Libraries and command-line utilities for geospatial data processing/analysis',
author='David Shean',
author_email='[email protected]',
license='MIT',
url='https://github.com/dshean/pygeotools',
packages=['pygeotools', 'pygeotools.lib'],
long_description=open('README.md').read(),
install_requires=['gdal','numpy','scipy','matplotlib'],
#Note: this will write to /usr/local/bin
#scripts=['pygeotools/warptool.py', 'pygeotools/make_stack.py', 'pygeotools/raster2shp.py', 'pygeotools/clip_raster_by_shp.py', 'pygeotools/apply_mask.py', 'pygeotools/mask_raster.sh', 'pygeotools/ogr_merge.sh', 'pygeotools/replace_ndv.py', 'pygeotools/trim_ndv.py', 'pygeotools/filter.py', 'pygeotools/proj_select.py']
)