Metadata-Version: 2.3
Name: pystrux
Version: 0.1.7
Summary: useful libraries for structural engineering
Author: mohamadalitellawi
Author-email: mohamadalitellawi <mohamadalitellawi@gmail.com>
License: MIT License
         
         Copyright (c) 2025 mohamadalitellawi
         
         Permission is hereby granted, free of charge, to any person obtaining a copy
         of this software and associated documentation files (the "Software"), to deal
         in the Software without restriction, including without limitation the rights
         to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         copies of the Software, and to permit persons to whom the Software is
         furnished to do so, subject to the following conditions:
         
         The above copyright notice and this permission notice shall be included in all
         copies or substantial portions of the Software.
         
         THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
         SOFTWARE.
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering
Classifier: Programming Language :: Python :: 3
Requires-Dist: concreteproperties>=0.7.0
Requires-Dist: dash>=3.3.0
Requires-Dist: dash-bootstrap-components>=2.0.4
Requires-Dist: faker>=38.2.0
Requires-Dist: forallpeople>=2.7.1
Requires-Dist: handcalcs>=1.10.0
Requires-Dist: ipykernel>=7.1.0
Requires-Dist: ipympl>=0.9.8
Requires-Dist: ipython>=9.7.0
Requires-Dist: ipywidgets>=8.1.8
Requires-Dist: jupyterlab>=4.5.0
Requires-Dist: jupyterlab-mathjax3>=4.3.0
Requires-Dist: loguru>=0.7.3
Requires-Dist: lxml>=6.0.2
Requires-Dist: matplotlib>=3.10.7
Requires-Dist: mermaid-py>=0.8.0
Requires-Dist: more-itertools>=10.8.0
Requires-Dist: nb-hideinputs>=0.2.0
Requires-Dist: nbconvert>=7.16.6
Requires-Dist: notebook>=7.5.0
Requires-Dist: numpy>=2.3.5
Requires-Dist: openpyxl>=3.1.5
Requires-Dist: pandas>=2.3.3
Requires-Dist: papermill>=2.6.0
Requires-Dist: papermodels>=0.17.1
Requires-Dist: plotly>=6.5.0
Requires-Dist: pytest>=9.0.1
Requires-Dist: pytest-cov>=7.0.0
Requires-Dist: python-docx>=1.2.0
Requires-Dist: python-dotenv>=1.2.1
Requires-Dist: pythonnet>=3.0.5
Requires-Dist: pyyaml>=6.0.3
Requires-Dist: rich>=13.9.4
Requires-Dist: ruff>=0.14.6
Requires-Dist: scipy>=1.16.3
Requires-Dist: seaborn>=0.13.2
Requires-Dist: sectionproperties>=3.9.0
Requires-Dist: shapely>=2.1.2
Requires-Dist: sympy>=1.14.0
Requires-Dist: textual>=6.2.1
Requires-Dist: tqdm>=4.67.1
Requires-Dist: xlwings>=0.33.16
Requires-Dist: xmltodict>=1.0.2
Requires-Python: >=3.12
Description-Content-Type: text/markdown

# PyStrux

Library for useful packages for engineering notebooks.

```shell
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

uv venv --seed --python 3.12
.venv\Scripts\activate
uv pip install notebook ipympl ipykernel ipython ipywidgets jupyterlab jupyterlab-mathjax3 nbconvert pytest pytest-cov
uv pip install forallpeople handcalcs loguru matplotlib more-itertools numpy openpyxl pandas plotly pythonnet pyyaml rich shapely xlwings tqdm xmltodict textual seaborn scipy python-dotenv python-docx mermaid-py papermill lxml sectionproperties concreteproperties papermodels nb-hideinputs sympy dash dash-bootstrap-components faker ruff

uv run python -m ipykernel install --user --name pystrux --display-name "Python 3.12 (pystrux)"

uv run jupyter lab

jupyter kernelspec list
```

```shell
uv tool run ruff check
uv tool run ruff format
uv run pytest
uv version --bump patch
```

```toml
dependencies = [
    "concreteproperties>=0.7.0",
    "dash>=3.3.0",
    "dash-bootstrap-components>=2.0.4",
    "faker>=38.2.0",
    "forallpeople>=2.7.1",
    "handcalcs>=1.10.0",
    "ipykernel>=7.1.0",
    "ipympl>=0.9.8",
    "ipython>=9.7.0",
    "ipywidgets>=8.1.8",
    "jupyterlab>=4.5.0",
    "jupyterlab-mathjax3>=4.3.0",
    "loguru>=0.7.3",
    "lxml>=6.0.2",
    "matplotlib>=3.10.7",
    "mermaid-py>=0.8.0",
    "more-itertools>=10.8.0",
    "nb-hideinputs>=0.2.0",
    "nbconvert>=7.16.6",
    "notebook>=7.5.0",
    "numpy>=2.3.5",
    "openpyxl>=3.1.5",
    "pandas>=2.3.3",
    "papermill>=2.6.0",
    "papermodels>=0.17.1",
    "plotly>=6.5.0",
    "pytest>=9.0.1",
    "pytest-cov>=7.0.0",
    "python-docx>=1.2.0",
    "python-dotenv>=1.2.1",
    "pythonnet>=3.0.5",
    "pyyaml>=6.0.3",
    "rich>=13.9.4",
    "ruff>=0.14.6",
    "scipy>=1.16.3",
    "seaborn>=0.13.2",
    "sectionproperties>=3.9.0",
    "shapely>=2.1.2",
    "sympy>=1.14.0",
    "textual>=6.2.1",
    "tqdm>=4.67.1",
    "xlwings>=0.33.16",
    "xmltodict>=1.0.2",
]
```