geolysis 0.1.4__tar.gz → 0.1.5__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 (24) hide show
  1. {geolysis-0.1.4 → geolysis-0.1.5}/PKG-INFO +2 -2
  2. {geolysis-0.1.4 → geolysis-0.1.5}/README.md +1 -1
  3. {geolysis-0.1.4 → geolysis-0.1.5}/geolysis/__init__.py +1 -1
  4. {geolysis-0.1.4 → geolysis-0.1.5}/geolysis.egg-info/PKG-INFO +2 -2
  5. {geolysis-0.1.4 → geolysis-0.1.5}/LICENSE.txt +0 -0
  6. {geolysis-0.1.4 → geolysis-0.1.5}/geolysis/bearing_capacity/__init__.py +0 -0
  7. {geolysis-0.1.4 → geolysis-0.1.5}/geolysis/bearing_capacity/allowable.py +0 -0
  8. {geolysis-0.1.4 → geolysis-0.1.5}/geolysis/bearing_capacity/spt.py +0 -0
  9. {geolysis-0.1.4 → geolysis-0.1.5}/geolysis/bearing_capacity/ultimate.py +0 -0
  10. {geolysis-0.1.4 → geolysis-0.1.5}/geolysis/estimators.py +0 -0
  11. {geolysis-0.1.4 → geolysis-0.1.5}/geolysis/exceptions.py +0 -0
  12. {geolysis-0.1.4 → geolysis-0.1.5}/geolysis/soil_classifier.py +0 -0
  13. {geolysis-0.1.4 → geolysis-0.1.5}/geolysis/utils.py +0 -0
  14. {geolysis-0.1.4 → geolysis-0.1.5}/geolysis.egg-info/SOURCES.txt +0 -0
  15. {geolysis-0.1.4 → geolysis-0.1.5}/geolysis.egg-info/dependency_links.txt +0 -0
  16. {geolysis-0.1.4 → geolysis-0.1.5}/geolysis.egg-info/requires.txt +0 -0
  17. {geolysis-0.1.4 → geolysis-0.1.5}/geolysis.egg-info/top_level.txt +0 -0
  18. {geolysis-0.1.4 → geolysis-0.1.5}/pyproject.toml +0 -0
  19. {geolysis-0.1.4 → geolysis-0.1.5}/setup.cfg +0 -0
  20. {geolysis-0.1.4 → geolysis-0.1.5}/setup.py +0 -0
  21. {geolysis-0.1.4 → geolysis-0.1.5}/tests/test_bearing_capacity.py +0 -0
  22. {geolysis-0.1.4 → geolysis-0.1.5}/tests/test_estimators.py +0 -0
  23. {geolysis-0.1.4 → geolysis-0.1.5}/tests/test_soil_classification.py +0 -0
  24. {geolysis-0.1.4 → geolysis-0.1.5}/tests/test_spt.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: geolysis
3
- Version: 0.1.4
3
+ Version: 0.1.5
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
  Maintainer-email: Patrick Boateng <boatengpato.pb@gmail.com>
@@ -117,7 +117,7 @@ Classification of soil using `AASHTO` classification system.
117
117
 
118
118
  ```python
119
119
 
120
- >>> from geolab.soil_classifier import AASHTO
120
+ >>> from geolysis.soil_classifier import AASHTO
121
121
  >>> aashto_classifier = AASHTO(liquid_limit=37.7,
122
122
  ... plasticity_index=13.9,
123
123
  ... fines=47.44)
@@ -67,7 +67,7 @@ Classification of soil using `AASHTO` classification system.
67
67
 
68
68
  ```python
69
69
 
70
- >>> from geolab.soil_classifier import AASHTO
70
+ >>> from geolysis.soil_classifier import AASHTO
71
71
  >>> aashto_classifier = AASHTO(liquid_limit=37.7,
72
72
  ... plasticity_index=13.9,
73
73
  ... fines=47.44)
@@ -1,6 +1,6 @@
1
1
  import enum
2
2
 
3
- __version__ = "0.1.4"
3
+ __version__ = "0.1.5"
4
4
  ERROR_TOLERANCE = 0.01
5
5
  DECIMAL_PLACES = 3
6
6
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: geolysis
3
- Version: 0.1.4
3
+ Version: 0.1.5
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
  Maintainer-email: Patrick Boateng <boatengpato.pb@gmail.com>
@@ -117,7 +117,7 @@ Classification of soil using `AASHTO` classification system.
117
117
 
118
118
  ```python
119
119
 
120
- >>> from geolab.soil_classifier import AASHTO
120
+ >>> from geolysis.soil_classifier import AASHTO
121
121
  >>> aashto_classifier = AASHTO(liquid_limit=37.7,
122
122
  ... plasticity_index=13.9,
123
123
  ... fines=47.44)
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes