geolysis 0.10.1__tar.gz → 0.10.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.
Files changed (32) hide show
  1. {geolysis-0.10.1 → geolysis-0.10.2}/PKG-INFO +4 -1
  2. {geolysis-0.10.1 → geolysis-0.10.2}/README.md +3 -0
  3. {geolysis-0.10.1 → geolysis-0.10.2}/geolysis/__init__.py +1 -1
  4. {geolysis-0.10.1 → geolysis-0.10.2}/geolysis.egg-info/PKG-INFO +4 -1
  5. {geolysis-0.10.1 → geolysis-0.10.2}/LICENSE.txt +0 -0
  6. {geolysis-0.10.1 → geolysis-0.10.2}/geolysis/bearing_capacity/__init__.py +0 -0
  7. {geolysis-0.10.1 → geolysis-0.10.2}/geolysis/bearing_capacity/abc/__init__.py +0 -0
  8. {geolysis-0.10.1 → geolysis-0.10.2}/geolysis/bearing_capacity/abc/_cohl/__init__.py +0 -0
  9. {geolysis-0.10.1 → geolysis-0.10.2}/geolysis/bearing_capacity/abc/_cohl/_core.py +0 -0
  10. {geolysis-0.10.1 → geolysis-0.10.2}/geolysis/bearing_capacity/abc/_cohl/bowles_abc.py +0 -0
  11. {geolysis-0.10.1 → geolysis-0.10.2}/geolysis/bearing_capacity/abc/_cohl/meyerhof_abc.py +0 -0
  12. {geolysis-0.10.1 → geolysis-0.10.2}/geolysis/bearing_capacity/abc/_cohl/terzaghi_abc.py +0 -0
  13. {geolysis-0.10.1 → geolysis-0.10.2}/geolysis/bearing_capacity/ubc/__init__.py +0 -0
  14. {geolysis-0.10.1 → geolysis-0.10.2}/geolysis/bearing_capacity/ubc/_core.py +0 -0
  15. {geolysis-0.10.1 → geolysis-0.10.2}/geolysis/bearing_capacity/ubc/_hansen_ubc.py +0 -0
  16. {geolysis-0.10.1 → geolysis-0.10.2}/geolysis/bearing_capacity/ubc/_terzaghi_ubc.py +0 -0
  17. {geolysis-0.10.1 → geolysis-0.10.2}/geolysis/bearing_capacity/ubc/_vesic_ubc.py +0 -0
  18. {geolysis-0.10.1 → geolysis-0.10.2}/geolysis/foundation.py +0 -0
  19. {geolysis-0.10.1 → geolysis-0.10.2}/geolysis/soil_classifier.py +0 -0
  20. {geolysis-0.10.1 → geolysis-0.10.2}/geolysis/spt.py +0 -0
  21. {geolysis-0.10.1 → geolysis-0.10.2}/geolysis/utils.py +0 -0
  22. {geolysis-0.10.1 → geolysis-0.10.2}/geolysis.egg-info/SOURCES.txt +0 -0
  23. {geolysis-0.10.1 → geolysis-0.10.2}/geolysis.egg-info/dependency_links.txt +0 -0
  24. {geolysis-0.10.1 → geolysis-0.10.2}/geolysis.egg-info/requires.txt +0 -0
  25. {geolysis-0.10.1 → geolysis-0.10.2}/geolysis.egg-info/top_level.txt +0 -0
  26. {geolysis-0.10.1 → geolysis-0.10.2}/pyproject.toml +0 -0
  27. {geolysis-0.10.1 → geolysis-0.10.2}/setup.cfg +0 -0
  28. {geolysis-0.10.1 → geolysis-0.10.2}/setup.py +0 -0
  29. {geolysis-0.10.1 → geolysis-0.10.2}/tests/test_docs.py +0 -0
  30. {geolysis-0.10.1 → geolysis-0.10.2}/tests/test_foundation.py +0 -0
  31. {geolysis-0.10.1 → geolysis-0.10.2}/tests/test_soil_classifier.py +0 -0
  32. {geolysis-0.10.1 → geolysis-0.10.2}/tests/test_spt.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: geolysis
3
- Version: 0.10.1
3
+ Version: 0.10.2
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
 
@@ -1,5 +1,5 @@
1
1
  from . import bearing_capacity, foundation, soil_classifier, spt
2
2
 
3
- __version__ = "0.10.1"
3
+ __version__ = "0.10.2"
4
4
 
5
5
  __all__ = ["foundation", "soil_classifier", "spt", "bearing_capacity"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: geolysis
3
- Version: 0.10.1
3
+ Version: 0.10.2
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