gimms 0.0.2__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.
- gimms-0.0.2/.gitignore +47 -0
- gimms-0.0.2/LICENSE +21 -0
- gimms-0.0.2/PKG-INFO +38 -0
- gimms-0.0.2/README.md +25 -0
- gimms-0.0.2/example/Leapfrog_TE14515_alteration.dat +54406 -0
- gimms-0.0.2/example/Leapfrog_TE14515_alteration_geometry.dat +3497 -0
- gimms-0.0.2/example/Leapfrog_TE14515_faults.dat +54411 -0
- gimms-0.0.2/example/Leapfrog_TE14515_faults_geometry.dat +3497 -0
- gimms-0.0.2/example/Leapfrog_TE14515_nofaults.dat +54411 -0
- gimms-0.0.2/example/Leapfrog_TE14515_nofaults_geometry.dat +3497 -0
- gimms-0.0.2/example/create_vAUT2_from_vLeapfrog.py +294 -0
- gimms-0.0.2/example/gTE14515.dat +3497 -0
- gimms-0.0.2/pyproject.toml +34 -0
- gimms-0.0.2/src/gimms/__init__.py +4 -0
- gimms-0.0.2/src/gimms/__version__.py +1 -0
- gimms-0.0.2/src/gimms/applyFaultPerms.py +114 -0
- gimms-0.0.2/src/gimms/applyVerticalFaultPerms.py +169 -0
- gimms-0.0.2/src/gimms/connectSurface.py +68 -0
- gimms-0.0.2/src/gimms/core.py +3 -0
- gimms-0.0.2/src/gimms/createBackgroundHeat.py +18 -0
- gimms-0.0.2/src/gimms/createIncon_EWA_withWater.py +25 -0
- gimms-0.0.2/src/gimms/createRainfall.py +20 -0
- gimms-0.0.2/src/gimms/createRefinedPolygonRock.py +23 -0
- gimms-0.0.2/src/gimms/createReservoirRock.py +37 -0
- gimms-0.0.2/src/gimms/execfile3.py +27 -0
- gimms-0.0.2/src/gimms/plotAllFaultPerms.py +103 -0
- gimms-0.0.2/src/gimms/plotAllFaultVertPermDir.py +96 -0
- gimms-0.0.2/src/gimms/renameAlterationfromDat.py +30 -0
- gimms-0.0.2/src/gimms/renameFaultsfromDat.py +33 -0
- gimms-0.0.2/src/gimms/renameUnknown.py +15 -0
- gimms-0.0.2/src/gimms/set_AUTOUGH2_EWA_standard_pararmeters.py +50 -0
- gimms-0.0.2/tests/test_core.py +9 -0
gimms-0.0.2/.gitignore
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# Virtual environments
|
|
7
|
+
.venv/
|
|
8
|
+
env/
|
|
9
|
+
venv/
|
|
10
|
+
|
|
11
|
+
# Packaging
|
|
12
|
+
dist/
|
|
13
|
+
build/
|
|
14
|
+
*.egg-info/
|
|
15
|
+
.eggs/
|
|
16
|
+
|
|
17
|
+
# Coverage
|
|
18
|
+
htmlcov/
|
|
19
|
+
.coverage
|
|
20
|
+
coverage.xml
|
|
21
|
+
|
|
22
|
+
# Pytest
|
|
23
|
+
.pytest_cache/
|
|
24
|
+
|
|
25
|
+
# Mypy
|
|
26
|
+
.mypy_cache/
|
|
27
|
+
|
|
28
|
+
# Pyre
|
|
29
|
+
.pyre/
|
|
30
|
+
|
|
31
|
+
# VSCode / IDEs
|
|
32
|
+
.vscode/
|
|
33
|
+
.idea/
|
|
34
|
+
|
|
35
|
+
# Local env files
|
|
36
|
+
.env
|
|
37
|
+
|
|
38
|
+
# macOS
|
|
39
|
+
.DS_Store
|
|
40
|
+
.DocumentRevisions-V100
|
|
41
|
+
.fseventsd
|
|
42
|
+
.Spotlight-V100
|
|
43
|
+
.Trashes
|
|
44
|
+
|
|
45
|
+
# examples
|
|
46
|
+
example/TE14515_NS*
|
|
47
|
+
example/Reports/
|
gimms-0.0.2/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Your Name
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
gimms-0.0.2/PKG-INFO
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: gimms
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: A Python package for setting up TOUGH2 model from Leapfrog, based on JPO's script..
|
|
5
|
+
Author-email: Angus Yeh <a.yeh@auckland.ac.nz>, John O'Sullivan <jp.osullivan@auckland.ac.nz>
|
|
6
|
+
License: MIT
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Requires-Python: >=3.8
|
|
9
|
+
Requires-Dist: matplotlib
|
|
10
|
+
Requires-Dist: pypdf2
|
|
11
|
+
Requires-Dist: pytough
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
gimms
|
|
15
|
+
=====
|
|
16
|
+
|
|
17
|
+
A minimal Python package scaffold for the gimms package.
|
|
18
|
+
|
|
19
|
+
Usage:
|
|
20
|
+
|
|
21
|
+
pip install .
|
|
22
|
+
|
|
23
|
+
Run tests with pytest.
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## Developer
|
|
27
|
+
|
|
28
|
+
### Build and Publish
|
|
29
|
+
|
|
30
|
+
To bump version, create a tag, eg. `v0.1.0`
|
|
31
|
+
|
|
32
|
+
PyPI token is expected in ~/.pypirc
|
|
33
|
+
|
|
34
|
+
Publish to PyPI:
|
|
35
|
+
|
|
36
|
+
```console
|
|
37
|
+
hatch build
|
|
38
|
+
hatch publish
|
gimms-0.0.2/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
gimms
|
|
2
|
+
=====
|
|
3
|
+
|
|
4
|
+
A minimal Python package scaffold for the gimms package.
|
|
5
|
+
|
|
6
|
+
Usage:
|
|
7
|
+
|
|
8
|
+
pip install .
|
|
9
|
+
|
|
10
|
+
Run tests with pytest.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Developer
|
|
14
|
+
|
|
15
|
+
### Build and Publish
|
|
16
|
+
|
|
17
|
+
To bump version, create a tag, eg. `v0.1.0`
|
|
18
|
+
|
|
19
|
+
PyPI token is expected in ~/.pypirc
|
|
20
|
+
|
|
21
|
+
Publish to PyPI:
|
|
22
|
+
|
|
23
|
+
```console
|
|
24
|
+
hatch build
|
|
25
|
+
hatch publish
|