forked from insarlab/MintPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
181 lines (165 loc) · 7.54 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
#!/usr/bin/env python
############################################################
# Program is part of MintPy #
# Copyright (c) 2013, Zhang Yunjun, Heresh Fattahi #
# Author: Zhang Yunjun, Nov 2020 #
############################################################
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# Grab from README file: long_description
with open("docs/README.md", "r") as f:
long_description = f.read()
# Grab from version.py file: version and description
with open("mintpy/version.py", "r") as f:
lines = f.readlines()
# version
line = [line for line in lines if line.strip().startswith("Tag(")][0].strip()
version = line.replace("'",'"').split('"')[1]
# description
line = [line for line in lines if line.startswith("description")][0].strip()
description = line.replace("'",'"').split('"')[1]
# website
line = [line for line in lines if line.startswith("website")][0].strip()
website = line.replace("'",'"').split('"')[1]
def do_setup():
setup(
name="mintpy",
version=version,
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
author="Zhang Yunjun, Heresh Fattahi",
author_email="yunjunzgeo@gmail.com",
license='GPL-3.0-or-later',
license_files=('LICENSE',),
url=website,
project_urls={
"Bug Reports": "https://github.com/insarlab/mintpy/issues",
"Documentation": "https://mintpy.readthedocs.io/",
"Source": "https://github.com/insarlab/mintpy",
},
download_url=("https://github.com/insarlab/MintPy/archive/v{}.tar.gz".format(version)),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
keywords="InSAR, deformation, time-series, volcano, earthquake, tectonics, geodesy, geophysics, remote-sensing",
# dependencies
python_requires=">=3.6",
install_requires=[
"cartopy",
"cvxopt",
"dask>=1.0",
"dask-jobqueue>=0.3",
"defusedxml",
"h5py",
"joblib",
"lxml",
"matplotlib",
"numpy",
"pyaps3",
"pykml>=0.2",
"pyproj",
"setuptools",
"scikit-image",
"scipy",
# for pyresample
"pyresample",
# "openmp",
],
# package discovery
packages=find_packages(),
entry_points={
'console_scripts': [
'add_attribute.py = mintpy.add_attribute:main',
'add.py = mintpy.add:main',
'asc_desc2horz_vert.py = mintpy.asc_desc2horz_vert:main',
'closure_phase_bias.py = mintpy.closure_phase_bias:main',
'dem_error.py = mintpy.dem_error:main',
'dem_gsi.py = mintpy.dem_gsi:main',
'diff.py = mintpy.diff:main',
'generate_mask.py = mintpy.generate_mask:main',
'geocode.py = mintpy.geocode:main',
'ifgram_inversion.py = mintpy.ifgram_inversion:main',
'ifgram_reconstruction.py = mintpy.ifgram_reconstruction:main',
'image_math.py = mintpy.image_math:main',
'image_stitch.py = mintpy.image_stitch:main',
'info.py = mintpy.info:main',
'load_data.py = mintpy.load_data:main',
'load_gbis.py = mintpy.load_gbis:main',
'local_oscilator_drift.py = mintpy.local_oscilator_drift:main',
'lookup_geo2radar.py = mintpy.lookup_geo2radar:main',
'mask.py = mintpy.mask:main',
'modify_network.py = mintpy.modify_network:main',
'multilook.py = mintpy.multilook:main',
'multi_transect.py = mintpy.multi_transect:main',
'plot_coherence_matrix.py = mintpy.plot_coherence_matrix:main',
'plot_network.py = mintpy.plot_network:main',
'plot_transection.py = mintpy.plot_transection:main',
'prep_aria.py = mintpy.prep_aria:main',
'prep_cosicorr.py = mintpy.prep_cosicorr:main',
'prep_fringe.py = mintpy.prep_fringe:main',
'prep_gamma.py = mintpy.prep_gamma:main',
'prep_giant.py = mintpy.prep_giant:main',
'prep_gmtsar.py = mintpy.prep_gmtsar:main',
'prep_hyp3.py = mintpy.prep_hyp3:main',
'prep_isce.py = mintpy.prep_isce:main',
'prep_roipac.py = mintpy.prep_roipac:main',
'prep_snap.py = mintpy.prep_snap:main',
'reference_date.py = mintpy.reference_date:main',
'reference_point.py = mintpy.reference_point:main',
'remove_hdf5_dataset.py = mintpy.remove_hdf5_dataset:main',
'remove_ramp.py = mintpy.remove_ramp:main',
'save_gbis.py = mintpy.save_gbis:main',
'save_gdal.py = mintpy.save_gdal:main',
'save_gmt.py = mintpy.save_gmt:main',
'save_hdfeos5.py = mintpy.save_hdfeos5:main',
'save_kite.py = mintpy.save_kite:main',
'save_kmz.py = mintpy.save_kmz:main',
'save_kmz_timeseries.py = mintpy.save_kmz_timeseries:main',
'save_qgis.py = mintpy.save_qgis:main',
'save_roipac.py = mintpy.save_roipac:main',
'smallbaselineApp.py = mintpy.smallbaselineApp:main',
'solid_earth_tides.py = mintpy.solid_earth_tides:main',
'spatial_average.py = mintpy.spatial_average:main',
'spatial_filter.py = mintpy.spatial_filter:main',
'subset.py = mintpy.subset:main',
'temporal_average.py = mintpy.temporal_average:main',
'temporal_derivative.py = mintpy.temporal_derivative:main',
'temporal_filter.py = mintpy.temporal_filter:main',
'timeseries2velocity.py = mintpy.timeseries2velocity:main',
'timeseries_rms.py = mintpy.timeseries_rms:main',
'tropo_gacos.py = mintpy.tropo_gacos:main',
'tropo_phase_elevation.py = mintpy.tropo_phase_elevation:main',
'tropo_pyaps3.py = mintpy.tropo_pyaps3:main',
'tropo_pyaps.py = mintpy.tropo_pyaps:main',
'tsview.py = mintpy.tsview:main',
'unwrap_error_bridging.py = mintpy.unwrap_error_bridging:main',
'unwrap_error_phase_closure.py = mintpy.unwrap_error_phase_closure:main',
'view.py = mintpy.view:main',
]
},
# data files
include_package_data=True,
package_data={
"mintpy": [
"data/*.js",
"data/*.png",
"data/colormaps/*.cpt",
"data/input_files/*.txt",
"data/input_files/*.template",
"data/input_files/*.md",
"defaults/*.cfg",
"defaults/*.yaml",
"sh/*.sh",
],
},
zip_safe=False,
)
if __name__ == "__main__":
do_setup()