ras-commander 0.55.0__tar.gz → 0.56.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ras_commander-0.55.0/ras_commander.egg-info → ras_commander-0.56.0}/PKG-INFO +1 -1
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/__init__.py +26 -36
- {ras_commander-0.55.0 → ras_commander-0.56.0/ras_commander.egg-info}/PKG-INFO +1 -1
- {ras_commander-0.55.0 → ras_commander-0.56.0}/setup.py +1 -1
- {ras_commander-0.55.0 → ras_commander-0.56.0}/LICENSE +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/README.md +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/pyproject.toml +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/Decorators.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/HdfBase.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/HdfBndry.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/HdfFluvialPluvial.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/HdfInfiltration.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/HdfMesh.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/HdfPipe.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/HdfPlan.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/HdfPlot.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/HdfPump.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/HdfResultsMesh.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/HdfResultsPlan.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/HdfResultsPlot.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/HdfResultsXsec.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/HdfStruc.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/HdfUtils.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/HdfXsec.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/LoggingConfig.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/RasCmdr.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/RasExamples.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/RasGeo.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/RasGpt.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/RasMapper.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/RasPlan.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/RasPrj.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/RasToGo.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/RasUnsteady.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander/RasUtils.py +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander.egg-info/SOURCES.txt +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander.egg-info/dependency_links.txt +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander.egg-info/requires.txt +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/ras_commander.egg-info/top_level.txt +0 -0
- {ras_commander-0.55.0 → ras_commander-0.56.0}/setup.cfg +0 -0
@@ -1,3 +1,7 @@
|
|
1
|
+
"""
|
2
|
+
ras-commander: A Python library for automating HEC-RAS operations
|
3
|
+
"""
|
4
|
+
|
1
5
|
from importlib.metadata import version, PackageNotFoundError
|
2
6
|
from .LoggingConfig import setup_logging, get_logger
|
3
7
|
from .Decorators import log_call, standardize_input
|
@@ -6,12 +10,12 @@ try:
|
|
6
10
|
__version__ = version("ras-commander")
|
7
11
|
except PackageNotFoundError:
|
8
12
|
# package is not installed
|
9
|
-
__version__ = "
|
13
|
+
__version__ = "0.54.0"
|
10
14
|
|
11
15
|
# Set up logging
|
12
16
|
setup_logging()
|
13
17
|
|
14
|
-
#
|
18
|
+
# Core functionality
|
15
19
|
from .RasPrj import RasPrj, init_ras_project, get_ras_exe, ras
|
16
20
|
from .RasPlan import RasPlan
|
17
21
|
from .RasGeo import RasGeo
|
@@ -19,11 +23,11 @@ from .RasUnsteady import RasUnsteady
|
|
19
23
|
from .RasUtils import RasUtils
|
20
24
|
from .RasExamples import RasExamples
|
21
25
|
from .RasCmdr import RasCmdr
|
22
|
-
from .RasGpt import RasGpt
|
26
|
+
from .RasGpt import RasGpt
|
23
27
|
from .RasToGo import RasToGo
|
24
28
|
from .HdfFluvialPluvial import HdfFluvialPluvial
|
25
29
|
|
26
|
-
#
|
30
|
+
# HDF handling
|
27
31
|
from .HdfBase import HdfBase
|
28
32
|
from .HdfBndry import HdfBndry
|
29
33
|
from .HdfMesh import HdfMesh
|
@@ -39,41 +43,27 @@ from .HdfPipe import HdfPipe
|
|
39
43
|
from .HdfInfiltration import HdfInfiltration
|
40
44
|
from .RasMapper import RasMapper
|
41
45
|
|
42
|
-
#
|
46
|
+
# Plotting functionality
|
43
47
|
from .HdfPlot import HdfPlot
|
44
48
|
from .HdfResultsPlot import HdfResultsPlot
|
45
49
|
|
46
50
|
# Define __all__ to specify what should be imported when using "from ras_commander import *"
|
47
51
|
__all__ = [
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
"ras",
|
66
|
-
"init_ras_project",
|
67
|
-
"get_ras_exe",
|
68
|
-
"RasPrj",
|
69
|
-
"RasPlan",
|
70
|
-
"RasGeo",
|
71
|
-
"RasUnsteady",
|
72
|
-
"RasCmdr",
|
73
|
-
"RasUtils",
|
74
|
-
"RasExamples",
|
75
|
-
"get_logger",
|
76
|
-
"log_call",
|
52
|
+
# Core functionality
|
53
|
+
'RasPrj', 'init_ras_project', 'get_ras_exe', 'ras',
|
54
|
+
'RasPlan', 'RasGeo', 'RasUnsteady', 'RasUtils',
|
55
|
+
'RasExamples', 'RasCmdr', 'RasGpt', 'RasToGo',
|
56
|
+
'HdfFluvialPluvial',
|
57
|
+
|
58
|
+
# HDF handling
|
59
|
+
'HdfBase', 'HdfBndry', 'HdfMesh', 'HdfPlan',
|
60
|
+
'HdfResultsMesh', 'HdfResultsPlan', 'HdfResultsXsec',
|
61
|
+
'HdfStruc', 'HdfUtils', 'HdfXsec', 'HdfPump',
|
62
|
+
'HdfPipe', 'HdfInfiltration', 'RasMapper',
|
63
|
+
|
64
|
+
# Plotting functionality
|
65
|
+
'HdfPlot', 'HdfResultsPlot',
|
66
|
+
|
67
|
+
# Utilities
|
68
|
+
'get_logger', 'log_call', 'standardize_input',
|
77
69
|
]
|
78
|
-
|
79
|
-
__version__ = "0.54.0"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|