-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (56 loc) · 1.88 KB
/
setup.py
File metadata and controls
58 lines (56 loc) · 1.88 KB
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
# 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(name="geode-gnss",
package_data={
"geode.elasticity": ["data/*.txt"],
},
include_package_data=True,
scripts=[
'com/StationInfoEdit.py',
'com/ArchiveService.py',
'com/GenerateKml.py',
'com/PlotETM.py',
'com/AlterETM.py',
'com/CreateEtmFunctions.py',
'com/CloseStationInfo.py',
'com/ConvertDate.py',
'com/ConvertTrimble.py',
'com/DownloadSources.py',
'com/DownloadSourcesFill.py',
'com/DRA.py',
'com/EtmStacker.py',
'com/FixPlate.py',
'com/GenerateSinex.py',
'com/IntegrityCheck.py',
'com/LocateRinex.py',
'com/ModelProcessing.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']
)