Metadata-Version: 2.1
Name: plxcontroller
Version: 0.4.0
Summary: Controllers to create and modify Plaxis 2D and 3D models with enhanced functionalities.
License: MIT License
        
        Copyright (c) 2023 CEMS
        
        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.
        
Project-URL: repository, https://github.com/cemsbv/plxcontroller
Keywords: plxcontroller,CEMS,PLAXIS automation
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: plxscripting<2.0.0,>=1.0.4
Requires-Dist: numpy<2.0,>=1.24.2
Requires-Dist: shapely<3.0,>=2.0.1
Requires-Dist: matplotlib==3.7.1
Requires-Dist: scikit-spatial<8.0.0,>=7.0.0
Provides-Extra: test
Requires-Dist: coveralls; extra == "test"
Requires-Dist: pytest; extra == "test"
Provides-Extra: lint
Requires-Dist: mypy==1.6.1; extra == "lint"
Requires-Dist: mypy-extensions==1.0.0; extra == "lint"
Requires-Dist: tomli==2.0.1; extra == "lint"
Requires-Dist: typing_extensions==4.7.1; extra == "lint"
Requires-Dist: black[jupyter]==23.10.1; extra == "lint"
Requires-Dist: click==8.1.3; extra == "lint"
Requires-Dist: packaging==23.2; extra == "lint"
Requires-Dist: pathspec==0.11.1; extra == "lint"
Requires-Dist: platformdirs==3.5.1; extra == "lint"
Requires-Dist: tomli==2.0.1; extra == "lint"
Requires-Dist: isort==5.12.0; extra == "lint"
Requires-Dist: flake8==6.0.0; extra == "lint"
Requires-Dist: mccabe==0.7.0; extra == "lint"
Requires-Dist: pycodestyle==2.10.0; extra == "lint"
Requires-Dist: pyflakes==3.0.1; extra == "lint"
Requires-Dist: pandas-stubs<3,>2; extra == "lint"
Requires-Dist: types-tqdm<5,>4; extra == "lint"

# plxcontroller
Controllers to create and modify Plaxis 2D and 3D models with enhanced functionalities.

[![Checked with mypy](https://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/)


This repository is created by [CEMS BV](https://cemsbv.nl/).

# Installation

To install a package in this repository run:

`$ pip install plxcontroller`

# Contribution

## Environment

We recommend developing in Python3.9 with a clean virtual environment (using `virtualenv` or `conda`), installing the requirements from the requirements.txt file:

Example using `virtualenv` and `pip` to install the dependencies in a new environment .env on Linux:

```bash
python -m venv .env
source .env/bin/activate
python -m pip install --upgrade pip setuptools
pip install -r requirements.txt
pip install -e .
```

## Format

We format our code with black and isort.

```bash
black --config "pyproject.toml" src/plxcontroller tests notebooks
isort --settings-path "pyproject.toml" src/plxcontroller tests notebooks
```

## Lint

To maintain code quality we use the GitHub super-linter.

To run the linters locally, run the `run_super_linter.sh` bash script from the root directory.

## UnitTest

Test the software with the use of coverage:

```bash
python -m pip install --upgrade pip setuptools
pip install -r requirements.txt
pip install -e .
coverage run -m pytest
```

## Requirements

Requirements are autogenerated by the `pip-compile` command with python 3.9

Install pip-tools with:

```bash
pip install pip-tools
```

Generate requirements.txt file with:

```bash
pip-compile --extra=test --extra=lint --output-file=requirements.txt pyproject.toml
```

Update the requirements within the defined ranges with:

```bash
pip-compile --upgrade --extra=test --extra=lint --output-file=requirements.txt pyproject.toml
```
