-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
48 lines (46 loc) · 1.71 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
# A minimal setup.py file to make a Python project installable.
#
# Stolen from https://github.com/fperez/mytoy/blob/main/setup.py
#
# Note that while we are following modern packaging practices
# with setuptools metadata being declaratively stored in setup.cfg
# and build configuration listed in pyproj.toml, pip/setuptools
# as of this writing (early 2022) still require a minimal setup.py
# file in order to support editable development installs (pip install -e .)
from setuptools import setup
if __name__ == "__main__":
setup(scripts=['com/StationInfoEdit.py',
'com/ArchiveService.py',
'com/GenerateKml.py',
'com/PlotETM.py',
'com/AlterETM.py',
'com/CloseStationInfo.py',
'com/ConvertDate.py',
'com/ConvertTrimble.py',
'com/DownloadSources.py',
'com/DownloadSourcesFill.py',
'com/DRA.py',
'com/FixPlate.py',
'com/GenerateSinex.py',
'com/IntegrityCheck.py',
'com/LocateRinex.py',
'com/NEQStack.py',
'com/OTL_FES2014b.py',
'com/ParallelGamit.py',
'com/PlotMapView.py',
'com/QueryETM.py',
'com/S-score.py',
'com/ScanArchive.py',
'com/Stacker.py',
'com/StationInfoEdit.py',
'com/SyncOrbits.py',
'com/TrajectoryFit.py',
'com/UpdateEarthquakes.py',
'com/WeeklyCombination.py',
'com/Ztd2trp.py',
# these are scripts that are outside dependencies but added for convenience
'scripts/crz2rnx',
'scripts/rnx2crz',
'scripts/rename_crinex.sh',
'scripts/rename_with_logs.sh',
'scripts/rename_crinex2lower.sh'])