-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathsetup.py
22 lines (18 loc) · 983 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
from distutils.core import setup
#To prepare a new release
#python setup.py sdist upload
setup(name='demcoreg',
version='1.1.2',
description='Utilities for DEM co-registration',
author='David Shean',
author_email='[email protected]',
license='MIT',
url='https://github.com/dshean/demcoreg',
packages=['demcoreg'],
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=['numpy','gdal','pygeotools','wget'],
#Note: this will create local copy of executable scripts
#scripts=['demcoreg/pc_align_wrapper.sh', 'demcoreg/apply_dem_translation.py', 'demcoreg/compute_diff.py', 'demcoreg/dem_align.py', 'demcoreg/dem_mask.py', 'demcoreg/dem_coreg.sh', 'demcoreg/dem_coreg_all.sh', 'demcoreg/vol_stats.py', 'demcoreg/robust_stats.py', 'demcoreg/glas_proc.py', 'demcoreg/filter_glas.py', 'demcoreg/get_nlcd.sh', 'demcoreg/get_bareground.sh', 'demcoreg/get_rgi.sh']
)