py-pilecore 0.2.4__tar.gz → 2.0.0b0__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 (72) hide show
  1. {py-pilecore-0.2.4/src/py_pilecore.egg-info → py_pilecore-2.0.0b0}/PKG-INFO +44 -34
  2. {py-pilecore-0.2.4 → py_pilecore-2.0.0b0}/README.md +9 -3
  3. py_pilecore-2.0.0b0/pyproject.toml +105 -0
  4. {py-pilecore-0.2.4 → py_pilecore-2.0.0b0/src/py_pilecore.egg-info}/PKG-INFO +44 -34
  5. py_pilecore-2.0.0b0/src/py_pilecore.egg-info/SOURCES.txt +59 -0
  6. py_pilecore-2.0.0b0/src/py_pilecore.egg-info/requires.txt +41 -0
  7. py_pilecore-2.0.0b0/src/pypilecore/__init__.py +7 -0
  8. {py-pilecore-0.2.4 → py_pilecore-2.0.0b0}/src/pypilecore/_version.py +1 -1
  9. py_pilecore-2.0.0b0/src/pypilecore/api.py +370 -0
  10. py_pilecore-2.0.0b0/src/pypilecore/common/__init__.py +0 -0
  11. py_pilecore-2.0.0b0/src/pypilecore/common/friction.py +39 -0
  12. py_pilecore-2.0.0b0/src/pypilecore/common/norms.py +89 -0
  13. py_pilecore-2.0.0b0/src/pypilecore/common/piles/__init__.py +8 -0
  14. py_pilecore-2.0.0b0/src/pypilecore/common/piles/geometry/__init__.py +18 -0
  15. py_pilecore-2.0.0b0/src/pypilecore/common/piles/geometry/components/__init__.py +10 -0
  16. py_pilecore-2.0.0b0/src/pypilecore/common/piles/geometry/components/common.py +493 -0
  17. py_pilecore-2.0.0b0/src/pypilecore/common/piles/geometry/components/rectangle.py +529 -0
  18. py_pilecore-2.0.0b0/src/pypilecore/common/piles/geometry/components/round.py +444 -0
  19. py_pilecore-2.0.0b0/src/pypilecore/common/piles/geometry/main.py +335 -0
  20. py_pilecore-2.0.0b0/src/pypilecore/common/piles/geometry/materials.py +188 -0
  21. py_pilecore-2.0.0b0/src/pypilecore/common/piles/grid.py +222 -0
  22. py_pilecore-2.0.0b0/src/pypilecore/common/piles/main.py +370 -0
  23. py_pilecore-2.0.0b0/src/pypilecore/common/piles/type.py +295 -0
  24. {py-pilecore-0.2.4 → py_pilecore-2.0.0b0}/src/pypilecore/input/__init__.py +0 -2
  25. {py-pilecore-0.2.4 → py_pilecore-2.0.0b0}/src/pypilecore/input/grouper_properties.py +29 -21
  26. {py-pilecore-0.2.4 → py_pilecore-2.0.0b0}/src/pypilecore/input/multi_cpt.py +130 -154
  27. py_pilecore-2.0.0b0/src/pypilecore/input/soil_properties.py +251 -0
  28. py_pilecore-2.0.0b0/src/pypilecore/input/tension.py +342 -0
  29. py_pilecore-2.0.0b0/src/pypilecore/results/__init__.py +23 -0
  30. py_pilecore-2.0.0b0/src/pypilecore/results/cases_grouper_results.py +250 -0
  31. py_pilecore-2.0.0b0/src/pypilecore/results/cases_multi_cpt_results.py +253 -0
  32. {py-pilecore-0.2.4/src/pypilecore/results → py_pilecore-2.0.0b0/src/pypilecore/results/compression}/multi_cpt_results.py +265 -31
  33. py_pilecore-2.0.0b0/src/pypilecore/results/compression/single_cpt_results.py +430 -0
  34. py_pilecore-2.0.0b0/src/pypilecore/results/data_tables.py +79 -0
  35. {py-pilecore-0.2.4 → py_pilecore-2.0.0b0}/src/pypilecore/results/grouper_result.py +339 -73
  36. py_pilecore-2.0.0b0/src/pypilecore/results/lib.py +11 -0
  37. py_pilecore-2.0.0b0/src/pypilecore/results/plots.py +104 -0
  38. py_pilecore-2.0.0b0/src/pypilecore/results/post_processing.py +638 -0
  39. py_pilecore-2.0.0b0/src/pypilecore/results/result_definitions.py +243 -0
  40. {py-pilecore-0.2.4 → py_pilecore-2.0.0b0}/src/pypilecore/results/soil_properties.py +68 -12
  41. py_pilecore-2.0.0b0/src/pypilecore/results/tension/multi_cpt_results.py +393 -0
  42. py_pilecore-2.0.0b0/src/pypilecore/results/tension/single_cpt_results.py +346 -0
  43. py_pilecore-2.0.0b0/src/pypilecore/results/typing.py +72 -0
  44. {py-pilecore-0.2.4 → py_pilecore-2.0.0b0}/src/pypilecore/utils.py +6 -12
  45. py_pilecore-2.0.0b0/src/pypilecore/viewers/__init__.py +17 -0
  46. py_pilecore-2.0.0b0/src/pypilecore/viewers/interactive_figures/__init__.py +11 -0
  47. py_pilecore-2.0.0b0/src/pypilecore/viewers/interactive_figures/figure_cpt_results_plan_view.py +272 -0
  48. py_pilecore-2.0.0b0/src/pypilecore/viewers/interactive_figures/figure_cpt_results_versus_ptls.py +181 -0
  49. py_pilecore-2.0.0b0/src/pypilecore/viewers/interactive_figures/utils.py +48 -0
  50. py_pilecore-2.0.0b0/src/pypilecore/viewers/viewer_cpt_results_overview.py +93 -0
  51. py_pilecore-2.0.0b0/src/pypilecore/viewers/viewer_cpt_results_plan_view.py +103 -0
  52. py_pilecore-2.0.0b0/src/pypilecore/viewers/viewer_cpt_results_versus_ptls.py +91 -0
  53. py_pilecore-2.0.0b0/src/pypilecore/viewers/viewer_grouper_results_per_cpt_table.py +71 -0
  54. py_pilecore-2.0.0b0/src/pypilecore/viewers/viewer_results_per_cpt_table.py +71 -0
  55. py-pilecore-0.2.4/pyproject.toml +0 -95
  56. py-pilecore-0.2.4/src/py_pilecore.egg-info/SOURCES.txt +0 -27
  57. py-pilecore-0.2.4/src/py_pilecore.egg-info/requires.txt +0 -37
  58. py-pilecore-0.2.4/src/pypilecore/__init__.py +0 -5
  59. py-pilecore-0.2.4/src/pypilecore/api.py +0 -161
  60. py-pilecore-0.2.4/src/pypilecore/input/pile_properties.py +0 -212
  61. py-pilecore-0.2.4/src/pypilecore/input/soil_properties.py +0 -168
  62. py-pilecore-0.2.4/src/pypilecore/results/__init__.py +0 -11
  63. py-pilecore-0.2.4/src/pypilecore/results/pile_properties.py +0 -891
  64. py-pilecore-0.2.4/src/pypilecore/results/single_cpt_results.py +0 -464
  65. py-pilecore-0.2.4/tests/test_input.py +0 -645
  66. {py-pilecore-0.2.4 → py_pilecore-2.0.0b0}/LICENSE +0 -0
  67. {py-pilecore-0.2.4 → py_pilecore-2.0.0b0}/setup.cfg +0 -0
  68. {py-pilecore-0.2.4 → py_pilecore-2.0.0b0}/src/py_pilecore.egg-info/dependency_links.txt +0 -0
  69. {py-pilecore-0.2.4 → py_pilecore-2.0.0b0}/src/py_pilecore.egg-info/top_level.txt +0 -0
  70. {py-pilecore-0.2.4 → py_pilecore-2.0.0b0}/src/pypilecore/exceptions.py +0 -0
  71. {py-pilecore-0.2.4 → py_pilecore-2.0.0b0}/src/pypilecore/plot_utils.py +0 -0
  72. {py-pilecore-0.2.4 → py_pilecore-2.0.0b0}/src/pypilecore/results/load_settlement.py +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: py-pilecore
3
- Version: 0.2.4
3
+ Version: 2.0.0b0
4
4
  Summary: Public python SDK for the CEMS PileCore web-API.
5
5
  License: MIT License
6
6
 
@@ -26,44 +26,48 @@ License: MIT License
26
26
 
27
27
  Project-URL: repository, https://github.com/cemsbv/py-pilecore
28
28
  Keywords: API,PileCore,CEMS,CRUX
29
- Requires-Python: >=3.9
29
+ Requires-Python: <3.14,>=3.11
30
30
  Description-Content-Type: text/markdown
31
31
  License-File: LICENSE
32
- Requires-Dist: pygef<1,>0.8
33
- Requires-Dist: numpy<2,>1
34
- Requires-Dist: pandas<3,>2
35
- Requires-Dist: cems-nuclei[client]<1,>0.3
36
- Requires-Dist: matplotlib<4,>=3.8
37
- Requires-Dist: tqdm[notebook]<5,>4
38
- Requires-Dist: natsort<9,>8
39
- Requires-Dist: shapely<3,>=2
32
+ Requires-Dist: anywidget<0.10,>=0.9.18
33
+ Requires-Dist: cems-nuclei[client]<4,>=3.1.0
34
+ Requires-Dist: dash<4,>=3.0.2
35
+ Requires-Dist: ipywidgets<9,>=8.1.5
36
+ Requires-Dist: matplotlib<4,>=3.10.1
37
+ Requires-Dist: natsort<9,>=8.4.0
38
+ Requires-Dist: numpy<3,>=2.2.4
39
+ Requires-Dist: pandas<3,>=2.2.3
40
+ Requires-Dist: plotly-geo<2,>=1.0.0
41
+ Requires-Dist: plotly<7,>=6.0.1
42
+ Requires-Dist: pygef<=0.14.0,>=0.12.0
43
+ Requires-Dist: scipy<2,>=1.15.2
44
+ Requires-Dist: shapely<3,>=2.1.0
45
+ Requires-Dist: tqdm[notebook]<5,>=4.67.1
40
46
  Provides-Extra: test
41
47
  Requires-Dist: coveralls; extra == "test"
42
48
  Requires-Dist: pytest; extra == "test"
49
+ Requires-Dist: openapi-core; extra == "test"
43
50
  Provides-Extra: docs
44
- Requires-Dist: Sphinx==6.1.3; extra == "docs"
45
- Requires-Dist: sphinx-autodoc-typehints==1.22; extra == "docs"
46
- Requires-Dist: ipython==8.11.0; extra == "docs"
51
+ Requires-Dist: Sphinx==8.2.3; extra == "docs"
47
52
  Requires-Dist: asteroid-sphinx-theme==0.0.3; extra == "docs"
48
- Requires-Dist: sphinx_rtd_theme==1.2.0; extra == "docs"
53
+ Requires-Dist: ipython==9.7.0; extra == "docs"
54
+ Requires-Dist: sphinx-autodoc-typehints==3.5.2; extra == "docs"
55
+ Requires-Dist: sphinx_rtd_theme==3.0.2; extra == "docs"
49
56
  Provides-Extra: lint
50
- Requires-Dist: mypy==1.6.1; extra == "lint"
51
- Requires-Dist: mypy-extensions==1.0.0; extra == "lint"
52
- Requires-Dist: tomli==2.0.1; extra == "lint"
53
- Requires-Dist: typing_extensions==4.7.1; extra == "lint"
54
- Requires-Dist: black[jupyter]==23.10.1; extra == "lint"
55
- Requires-Dist: click==8.1.3; extra == "lint"
56
- Requires-Dist: packaging==23.2; extra == "lint"
57
- Requires-Dist: pathspec==0.11.1; extra == "lint"
58
- Requires-Dist: platformdirs==3.5.1; extra == "lint"
59
- Requires-Dist: tomli==2.0.1; extra == "lint"
60
- Requires-Dist: isort==5.12.0; extra == "lint"
61
- Requires-Dist: flake8==6.0.0; extra == "lint"
62
- Requires-Dist: mccabe==0.7.0; extra == "lint"
63
- Requires-Dist: pycodestyle==2.10.0; extra == "lint"
64
- Requires-Dist: pyflakes==3.0.1; extra == "lint"
65
- Requires-Dist: pandas-stubs<3,>2; extra == "lint"
66
- Requires-Dist: types-tqdm<5,>4; extra == "lint"
57
+ Requires-Dist: ansible-lint==25.11.1; extra == "lint"
58
+ Requires-Dist: black==25.11.0; extra == "lint"
59
+ Requires-Dist: cfn-lint==1.41.0; extra == "lint"
60
+ Requires-Dist: cpplint==2.0.2; extra == "lint"
61
+ Requires-Dist: flake8==7.3.0; extra == "lint"
62
+ Requires-Dist: isort==7.0.0; extra == "lint"
63
+ Requires-Dist: mypy==1.18.2; extra == "lint"
64
+ Requires-Dist: nbqa==1.9.1; extra == "lint"
65
+ Requires-Dist: pre-commit==4.5.0; extra == "lint"
66
+ Requires-Dist: sqlfluff==3.4.2; extra == "lint"
67
+ Requires-Dist: yamllint==1.37.1; extra == "lint"
68
+ Requires-Dist: yq==3.4.3; extra == "lint"
69
+ Requires-Dist: zizmor==1.17.0; extra == "lint"
70
+ Dynamic: license-file
67
71
 
68
72
  # py-pilecore
69
73
  Public python SDK for the CEMS PileCore web-API
@@ -99,7 +103,7 @@ Go to `personal-access-tokens` and create a new user token.
99
103
 
100
104
  ## Environment
101
105
 
102
- We recommend developing in Python3.10 with a clean virtual environment (using `virtualenv` or `conda`), installing the requirements from the requirements.txt file:
106
+ We recommend developing in Python3.11 with a clean virtual environment (using `virtualenv` or `conda`), installing the requirements from the requirements.txt file:
103
107
 
104
108
  Example using `virtualenv` and `pip` to install the dependencies in a new environment .env on Linux:
105
109
 
@@ -151,7 +155,7 @@ coverage run -m pytest
151
155
 
152
156
  ## Requirements
153
157
 
154
- Requirements are autogenerated by the `pip-compile` command with python 3.10
158
+ Requirements are autogenerated by the `pip-compile` command with python 3.11
155
159
 
156
160
  Install pip-tools with:
157
161
 
@@ -170,3 +174,9 @@ Update the requirements within the defined ranges with:
170
174
  ```bash
171
175
  pip-compile --upgrade --extra=test --extra=lint --extra=docs --output-file=requirements.txt pyproject.toml
172
176
  ```
177
+
178
+ Note that `pip-compile` might run from your global path. You can also invoke the compile
179
+ command from the `piptools` module on a specific python installation (e.g. within a virtualenv):
180
+
181
+ ```bash
182
+ python -m piptools compile
@@ -32,7 +32,7 @@ Go to `personal-access-tokens` and create a new user token.
32
32
 
33
33
  ## Environment
34
34
 
35
- We recommend developing in Python3.10 with a clean virtual environment (using `virtualenv` or `conda`), installing the requirements from the requirements.txt file:
35
+ We recommend developing in Python3.11 with a clean virtual environment (using `virtualenv` or `conda`), installing the requirements from the requirements.txt file:
36
36
 
37
37
  Example using `virtualenv` and `pip` to install the dependencies in a new environment .env on Linux:
38
38
 
@@ -84,7 +84,7 @@ coverage run -m pytest
84
84
 
85
85
  ## Requirements
86
86
 
87
- Requirements are autogenerated by the `pip-compile` command with python 3.10
87
+ Requirements are autogenerated by the `pip-compile` command with python 3.11
88
88
 
89
89
  Install pip-tools with:
90
90
 
@@ -102,4 +102,10 @@ Update the requirements within the defined ranges with:
102
102
 
103
103
  ```bash
104
104
  pip-compile --upgrade --extra=test --extra=lint --extra=docs --output-file=requirements.txt pyproject.toml
105
- ```
105
+ ```
106
+
107
+ Note that `pip-compile` might run from your global path. You can also invoke the compile
108
+ command from the `piptools` module on a specific python installation (e.g. within a virtualenv):
109
+
110
+ ```bash
111
+ python -m piptools compile
@@ -0,0 +1,105 @@
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "py-pilecore"
7
+ version = "2.0.0-beta.0"
8
+ description = "Public python SDK for the CEMS PileCore web-API."
9
+ requires-python = ">=3.11,<3.14"
10
+ dependencies = [
11
+ "anywidget>=0.9.18,<0.10",
12
+ "cems-nuclei[client]>=3.1.0,<4",
13
+ "dash>=3.0.2,<4",
14
+ "ipywidgets>=8.1.5,<9",
15
+ "matplotlib>=3.10.1,<4",
16
+ "natsort>=8.4.0,<9",
17
+ "numpy>=2.2.4,<3",
18
+ "pandas>=2.2.3,<3",
19
+ "plotly-geo>=1.0.0,<2",
20
+ "plotly>=6.0.1,<7",
21
+ "pygef>=0.12.0,<=0.14.0",
22
+ "scipy>=1.15.2,<2",
23
+ "shapely>=2.1.0,<3",
24
+ "tqdm[notebook]>=4.67.1,<5",
25
+ ]
26
+ license = { file = "LICENSE" }
27
+ readme = "README.md"
28
+ keywords = ["API", "PileCore", "CEMS", "CRUX"]
29
+
30
+ [project.urls]
31
+ repository = "https://github.com/cemsbv/py-pilecore"
32
+
33
+ [project.optional-dependencies]
34
+ test = ["coveralls", "pytest", "openapi-core"]
35
+ docs = [
36
+ "Sphinx==8.2.3",
37
+ "asteroid-sphinx-theme==0.0.3",
38
+ "ipython==9.7.0",
39
+ "sphinx-autodoc-typehints==3.5.2",
40
+ "sphinx_rtd_theme==3.0.2",
41
+ ]
42
+ # lint dependencies from github super-linter
43
+ # See https://github.com/super-linter/super-linter/tree/main/dependencies/python
44
+ # Get a file with the latest requirements by running bash: `./get-super-linter-requirements.sh`
45
+ # ignoring because redundant: snakemake, snakefmt, pylint
46
+ lint = [
47
+ "ansible-lint==25.11.1",
48
+ "black==25.11.0",
49
+ "cfn-lint==1.41.0",
50
+ "cpplint==2.0.2",
51
+ "flake8==7.3.0",
52
+ "isort==7.0.0",
53
+ "mypy==1.18.2",
54
+ "nbqa==1.9.1",
55
+ "pre-commit==4.5.0",
56
+ "sqlfluff==3.4.2",
57
+ "yamllint==1.37.1",
58
+ "yq==3.4.3",
59
+ "zizmor==1.17.0"
60
+ ]
61
+
62
+ [tool.isort]
63
+ profile = "black"
64
+ multi_line_output = 3
65
+ include_trailing_comma = true
66
+ force_grid_wrap = 0
67
+ use_parentheses = true
68
+ ensure_newline_before_comments = true
69
+ line_length = 88
70
+
71
+ [tool.mypy]
72
+ files = ["src/pypilecore"]
73
+ mypy_path = 'src'
74
+ namespace_packages = true
75
+ show_error_codes = true
76
+ warn_redundant_casts = true
77
+ warn_unused_ignores = true
78
+ warn_unused_configs = true
79
+ disallow_subclassing_any = true
80
+ no_implicit_optional = true
81
+ disallow_untyped_defs = true
82
+ disallow_any_generics = false
83
+ disallow_untyped_calls = true
84
+ warn_return_any = false
85
+ no_implicit_reexport = true
86
+ strict_equality = true
87
+ install_types = true
88
+
89
+ [[tool.mypy.overrides]]
90
+ module = [
91
+ "matplotlib.*",
92
+ "requests.*",
93
+ "nuclei.*",
94
+ "pygef.*",
95
+ "natsort.*",
96
+ "shapely.*",
97
+ "pytest.*",
98
+ "scipy.*",
99
+ "numpy.*",
100
+ "pandas.*",
101
+ "IPython.*",
102
+ "plotly.*",
103
+ "ipywidgets.*",
104
+ ]
105
+ ignore_missing_imports = true
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: py-pilecore
3
- Version: 0.2.4
3
+ Version: 2.0.0b0
4
4
  Summary: Public python SDK for the CEMS PileCore web-API.
5
5
  License: MIT License
6
6
 
@@ -26,44 +26,48 @@ License: MIT License
26
26
 
27
27
  Project-URL: repository, https://github.com/cemsbv/py-pilecore
28
28
  Keywords: API,PileCore,CEMS,CRUX
29
- Requires-Python: >=3.9
29
+ Requires-Python: <3.14,>=3.11
30
30
  Description-Content-Type: text/markdown
31
31
  License-File: LICENSE
32
- Requires-Dist: pygef<1,>0.8
33
- Requires-Dist: numpy<2,>1
34
- Requires-Dist: pandas<3,>2
35
- Requires-Dist: cems-nuclei[client]<1,>0.3
36
- Requires-Dist: matplotlib<4,>=3.8
37
- Requires-Dist: tqdm[notebook]<5,>4
38
- Requires-Dist: natsort<9,>8
39
- Requires-Dist: shapely<3,>=2
32
+ Requires-Dist: anywidget<0.10,>=0.9.18
33
+ Requires-Dist: cems-nuclei[client]<4,>=3.1.0
34
+ Requires-Dist: dash<4,>=3.0.2
35
+ Requires-Dist: ipywidgets<9,>=8.1.5
36
+ Requires-Dist: matplotlib<4,>=3.10.1
37
+ Requires-Dist: natsort<9,>=8.4.0
38
+ Requires-Dist: numpy<3,>=2.2.4
39
+ Requires-Dist: pandas<3,>=2.2.3
40
+ Requires-Dist: plotly-geo<2,>=1.0.0
41
+ Requires-Dist: plotly<7,>=6.0.1
42
+ Requires-Dist: pygef<=0.14.0,>=0.12.0
43
+ Requires-Dist: scipy<2,>=1.15.2
44
+ Requires-Dist: shapely<3,>=2.1.0
45
+ Requires-Dist: tqdm[notebook]<5,>=4.67.1
40
46
  Provides-Extra: test
41
47
  Requires-Dist: coveralls; extra == "test"
42
48
  Requires-Dist: pytest; extra == "test"
49
+ Requires-Dist: openapi-core; extra == "test"
43
50
  Provides-Extra: docs
44
- Requires-Dist: Sphinx==6.1.3; extra == "docs"
45
- Requires-Dist: sphinx-autodoc-typehints==1.22; extra == "docs"
46
- Requires-Dist: ipython==8.11.0; extra == "docs"
51
+ Requires-Dist: Sphinx==8.2.3; extra == "docs"
47
52
  Requires-Dist: asteroid-sphinx-theme==0.0.3; extra == "docs"
48
- Requires-Dist: sphinx_rtd_theme==1.2.0; extra == "docs"
53
+ Requires-Dist: ipython==9.7.0; extra == "docs"
54
+ Requires-Dist: sphinx-autodoc-typehints==3.5.2; extra == "docs"
55
+ Requires-Dist: sphinx_rtd_theme==3.0.2; extra == "docs"
49
56
  Provides-Extra: lint
50
- Requires-Dist: mypy==1.6.1; extra == "lint"
51
- Requires-Dist: mypy-extensions==1.0.0; extra == "lint"
52
- Requires-Dist: tomli==2.0.1; extra == "lint"
53
- Requires-Dist: typing_extensions==4.7.1; extra == "lint"
54
- Requires-Dist: black[jupyter]==23.10.1; extra == "lint"
55
- Requires-Dist: click==8.1.3; extra == "lint"
56
- Requires-Dist: packaging==23.2; extra == "lint"
57
- Requires-Dist: pathspec==0.11.1; extra == "lint"
58
- Requires-Dist: platformdirs==3.5.1; extra == "lint"
59
- Requires-Dist: tomli==2.0.1; extra == "lint"
60
- Requires-Dist: isort==5.12.0; extra == "lint"
61
- Requires-Dist: flake8==6.0.0; extra == "lint"
62
- Requires-Dist: mccabe==0.7.0; extra == "lint"
63
- Requires-Dist: pycodestyle==2.10.0; extra == "lint"
64
- Requires-Dist: pyflakes==3.0.1; extra == "lint"
65
- Requires-Dist: pandas-stubs<3,>2; extra == "lint"
66
- Requires-Dist: types-tqdm<5,>4; extra == "lint"
57
+ Requires-Dist: ansible-lint==25.11.1; extra == "lint"
58
+ Requires-Dist: black==25.11.0; extra == "lint"
59
+ Requires-Dist: cfn-lint==1.41.0; extra == "lint"
60
+ Requires-Dist: cpplint==2.0.2; extra == "lint"
61
+ Requires-Dist: flake8==7.3.0; extra == "lint"
62
+ Requires-Dist: isort==7.0.0; extra == "lint"
63
+ Requires-Dist: mypy==1.18.2; extra == "lint"
64
+ Requires-Dist: nbqa==1.9.1; extra == "lint"
65
+ Requires-Dist: pre-commit==4.5.0; extra == "lint"
66
+ Requires-Dist: sqlfluff==3.4.2; extra == "lint"
67
+ Requires-Dist: yamllint==1.37.1; extra == "lint"
68
+ Requires-Dist: yq==3.4.3; extra == "lint"
69
+ Requires-Dist: zizmor==1.17.0; extra == "lint"
70
+ Dynamic: license-file
67
71
 
68
72
  # py-pilecore
69
73
  Public python SDK for the CEMS PileCore web-API
@@ -99,7 +103,7 @@ Go to `personal-access-tokens` and create a new user token.
99
103
 
100
104
  ## Environment
101
105
 
102
- We recommend developing in Python3.10 with a clean virtual environment (using `virtualenv` or `conda`), installing the requirements from the requirements.txt file:
106
+ We recommend developing in Python3.11 with a clean virtual environment (using `virtualenv` or `conda`), installing the requirements from the requirements.txt file:
103
107
 
104
108
  Example using `virtualenv` and `pip` to install the dependencies in a new environment .env on Linux:
105
109
 
@@ -151,7 +155,7 @@ coverage run -m pytest
151
155
 
152
156
  ## Requirements
153
157
 
154
- Requirements are autogenerated by the `pip-compile` command with python 3.10
158
+ Requirements are autogenerated by the `pip-compile` command with python 3.11
155
159
 
156
160
  Install pip-tools with:
157
161
 
@@ -170,3 +174,9 @@ Update the requirements within the defined ranges with:
170
174
  ```bash
171
175
  pip-compile --upgrade --extra=test --extra=lint --extra=docs --output-file=requirements.txt pyproject.toml
172
176
  ```
177
+
178
+ Note that `pip-compile` might run from your global path. You can also invoke the compile
179
+ command from the `piptools` module on a specific python installation (e.g. within a virtualenv):
180
+
181
+ ```bash
182
+ python -m piptools compile
@@ -0,0 +1,59 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/py_pilecore.egg-info/PKG-INFO
5
+ src/py_pilecore.egg-info/SOURCES.txt
6
+ src/py_pilecore.egg-info/dependency_links.txt
7
+ src/py_pilecore.egg-info/requires.txt
8
+ src/py_pilecore.egg-info/top_level.txt
9
+ src/pypilecore/__init__.py
10
+ src/pypilecore/_version.py
11
+ src/pypilecore/api.py
12
+ src/pypilecore/exceptions.py
13
+ src/pypilecore/plot_utils.py
14
+ src/pypilecore/utils.py
15
+ src/pypilecore/common/__init__.py
16
+ src/pypilecore/common/friction.py
17
+ src/pypilecore/common/norms.py
18
+ src/pypilecore/common/piles/__init__.py
19
+ src/pypilecore/common/piles/grid.py
20
+ src/pypilecore/common/piles/main.py
21
+ src/pypilecore/common/piles/type.py
22
+ src/pypilecore/common/piles/geometry/__init__.py
23
+ src/pypilecore/common/piles/geometry/main.py
24
+ src/pypilecore/common/piles/geometry/materials.py
25
+ src/pypilecore/common/piles/geometry/components/__init__.py
26
+ src/pypilecore/common/piles/geometry/components/common.py
27
+ src/pypilecore/common/piles/geometry/components/rectangle.py
28
+ src/pypilecore/common/piles/geometry/components/round.py
29
+ src/pypilecore/input/__init__.py
30
+ src/pypilecore/input/grouper_properties.py
31
+ src/pypilecore/input/multi_cpt.py
32
+ src/pypilecore/input/soil_properties.py
33
+ src/pypilecore/input/tension.py
34
+ src/pypilecore/results/__init__.py
35
+ src/pypilecore/results/cases_grouper_results.py
36
+ src/pypilecore/results/cases_multi_cpt_results.py
37
+ src/pypilecore/results/data_tables.py
38
+ src/pypilecore/results/grouper_result.py
39
+ src/pypilecore/results/lib.py
40
+ src/pypilecore/results/load_settlement.py
41
+ src/pypilecore/results/plots.py
42
+ src/pypilecore/results/post_processing.py
43
+ src/pypilecore/results/result_definitions.py
44
+ src/pypilecore/results/soil_properties.py
45
+ src/pypilecore/results/typing.py
46
+ src/pypilecore/results/compression/multi_cpt_results.py
47
+ src/pypilecore/results/compression/single_cpt_results.py
48
+ src/pypilecore/results/tension/multi_cpt_results.py
49
+ src/pypilecore/results/tension/single_cpt_results.py
50
+ src/pypilecore/viewers/__init__.py
51
+ src/pypilecore/viewers/viewer_cpt_results_overview.py
52
+ src/pypilecore/viewers/viewer_cpt_results_plan_view.py
53
+ src/pypilecore/viewers/viewer_cpt_results_versus_ptls.py
54
+ src/pypilecore/viewers/viewer_grouper_results_per_cpt_table.py
55
+ src/pypilecore/viewers/viewer_results_per_cpt_table.py
56
+ src/pypilecore/viewers/interactive_figures/__init__.py
57
+ src/pypilecore/viewers/interactive_figures/figure_cpt_results_plan_view.py
58
+ src/pypilecore/viewers/interactive_figures/figure_cpt_results_versus_ptls.py
59
+ src/pypilecore/viewers/interactive_figures/utils.py
@@ -0,0 +1,41 @@
1
+ anywidget<0.10,>=0.9.18
2
+ cems-nuclei[client]<4,>=3.1.0
3
+ dash<4,>=3.0.2
4
+ ipywidgets<9,>=8.1.5
5
+ matplotlib<4,>=3.10.1
6
+ natsort<9,>=8.4.0
7
+ numpy<3,>=2.2.4
8
+ pandas<3,>=2.2.3
9
+ plotly-geo<2,>=1.0.0
10
+ plotly<7,>=6.0.1
11
+ pygef<=0.14.0,>=0.12.0
12
+ scipy<2,>=1.15.2
13
+ shapely<3,>=2.1.0
14
+ tqdm[notebook]<5,>=4.67.1
15
+
16
+ [docs]
17
+ Sphinx==8.2.3
18
+ asteroid-sphinx-theme==0.0.3
19
+ ipython==9.7.0
20
+ sphinx-autodoc-typehints==3.5.2
21
+ sphinx_rtd_theme==3.0.2
22
+
23
+ [lint]
24
+ ansible-lint==25.11.1
25
+ black==25.11.0
26
+ cfn-lint==1.41.0
27
+ cpplint==2.0.2
28
+ flake8==7.3.0
29
+ isort==7.0.0
30
+ mypy==1.18.2
31
+ nbqa==1.9.1
32
+ pre-commit==4.5.0
33
+ sqlfluff==3.4.2
34
+ yamllint==1.37.1
35
+ yq==3.4.3
36
+ zizmor==1.17.0
37
+
38
+ [test]
39
+ coveralls
40
+ pytest
41
+ openapi-core
@@ -0,0 +1,7 @@
1
+ from pypilecore._version import __version__
2
+ from pypilecore.common.piles.main import create_basic_pile
3
+
4
+ __all__ = [
5
+ "__version__",
6
+ "create_basic_pile",
7
+ ]
@@ -4,4 +4,4 @@ try:
4
4
  __version__ = version("py-pilecore")
5
5
  # during CI
6
6
  except PackageNotFoundError:
7
- __version__ = "0.2.4"
7
+ __version__ = "2.0.0-beta.0"