geolysis 0.10.1__tar.gz → 0.10.3__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.
- {geolysis-0.10.1 → geolysis-0.10.3}/PKG-INFO +4 -1
- {geolysis-0.10.1 → geolysis-0.10.3}/README.md +3 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/geolysis/__init__.py +1 -1
- {geolysis-0.10.1 → geolysis-0.10.3}/geolysis/utils.py +3 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/geolysis.egg-info/PKG-INFO +4 -1
- {geolysis-0.10.1 → geolysis-0.10.3}/LICENSE.txt +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/geolysis/bearing_capacity/__init__.py +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/geolysis/bearing_capacity/abc/__init__.py +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/geolysis/bearing_capacity/abc/_cohl/__init__.py +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/geolysis/bearing_capacity/abc/_cohl/_core.py +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/geolysis/bearing_capacity/abc/_cohl/bowles_abc.py +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/geolysis/bearing_capacity/abc/_cohl/meyerhof_abc.py +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/geolysis/bearing_capacity/abc/_cohl/terzaghi_abc.py +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/geolysis/bearing_capacity/ubc/__init__.py +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/geolysis/bearing_capacity/ubc/_core.py +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/geolysis/bearing_capacity/ubc/_hansen_ubc.py +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/geolysis/bearing_capacity/ubc/_terzaghi_ubc.py +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/geolysis/bearing_capacity/ubc/_vesic_ubc.py +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/geolysis/foundation.py +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/geolysis/soil_classifier.py +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/geolysis/spt.py +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/geolysis.egg-info/SOURCES.txt +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/geolysis.egg-info/dependency_links.txt +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/geolysis.egg-info/requires.txt +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/geolysis.egg-info/top_level.txt +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/pyproject.toml +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/setup.cfg +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/setup.py +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/tests/test_docs.py +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/tests/test_foundation.py +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/tests/test_soil_classifier.py +0 -0
- {geolysis-0.10.1 → geolysis-0.10.3}/tests/test_spt.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: geolysis
|
3
|
-
Version: 0.10.
|
3
|
+
Version: 0.10.3
|
4
4
|
Summary: geolysis is an opensource software for geotechnical engineering analysis and modeling.
|
5
5
|
Author-email: Patrick Boateng <boatengpato.pb@gmail.com>
|
6
6
|
License: MIT License
|
@@ -57,6 +57,9 @@ The `geolysis` python package is among three other projects, `geolysis.excel`,
|
|
57
57
|
`geolysis.gui`, and `geolysis.ai`. More details about these projects are
|
58
58
|
provided [here](https://github.com/geolysis-dev).
|
59
59
|
|
60
|
+
`geolysis` has only one project dependency which is [func-validator](https://github.com/patrickboateng/func-validator/)
|
61
|
+
for validating `function` (and `method`) arguments.
|
62
|
+
|
60
63
|
The rest of this **README** provides an overview of the `geolysis` python
|
61
64
|
package.
|
62
65
|
|
@@ -24,6 +24,9 @@ The `geolysis` python package is among three other projects, `geolysis.excel`,
|
|
24
24
|
`geolysis.gui`, and `geolysis.ai`. More details about these projects are
|
25
25
|
provided [here](https://github.com/geolysis-dev).
|
26
26
|
|
27
|
+
`geolysis` has only one project dependency which is [func-validator](https://github.com/patrickboateng/func-validator/)
|
28
|
+
for validating `function` (and `method`) arguments.
|
29
|
+
|
27
30
|
The rest of this **README** provides an overview of the `geolysis` python
|
28
31
|
package.
|
29
32
|
|
@@ -5,8 +5,11 @@ from math import exp, inf, isclose, log10, pi, sqrt
|
|
5
5
|
from statistics import fmean as mean
|
6
6
|
from typing import Callable
|
7
7
|
|
8
|
+
from func_validator import ValidationError
|
9
|
+
|
8
10
|
__all__ = [
|
9
11
|
"AbstractStrEnum",
|
12
|
+
"ValidationError",
|
10
13
|
"inf",
|
11
14
|
"pi",
|
12
15
|
"deg2rad",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: geolysis
|
3
|
-
Version: 0.10.
|
3
|
+
Version: 0.10.3
|
4
4
|
Summary: geolysis is an opensource software for geotechnical engineering analysis and modeling.
|
5
5
|
Author-email: Patrick Boateng <boatengpato.pb@gmail.com>
|
6
6
|
License: MIT License
|
@@ -57,6 +57,9 @@ The `geolysis` python package is among three other projects, `geolysis.excel`,
|
|
57
57
|
`geolysis.gui`, and `geolysis.ai`. More details about these projects are
|
58
58
|
provided [here](https://github.com/geolysis-dev).
|
59
59
|
|
60
|
+
`geolysis` has only one project dependency which is [func-validator](https://github.com/patrickboateng/func-validator/)
|
61
|
+
for validating `function` (and `method`) arguments.
|
62
|
+
|
60
63
|
The rest of this **README** provides an overview of the `geolysis` python
|
61
64
|
package.
|
62
65
|
|
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
|