Metadata-Version: 2.1
Name: LS_toolbox
Version: 0.1.5
Summary: Toolboxes for working with LS-Dyna and LS-Prepost through python.
Home-page: 
Author: Marc Gardegaront
Author-email: marc.gardegaront@univ-eiffel.fr
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: numpy-stl

# LS_toolbox
A collection of tools for working with LS-DYNA and LS-PrePost.

## Installation
`pip install LS_toolbox`

Create environment variables named `LSDYNA_PATH` and `LSPREPOST_PATH` and set them to the paths of the LS-DYNA and LS-PrePost executables, respectively.\
To do this, open the terminal and type:

For Windows:
```bash
setx LSDYNA_PATH "path\to\lsdyna\executable"
setx LSPREPOST_PATH "path\to\lsprepost\executable"
```
For Linux:
```bash
export LSDYNA_PATH="path/to/lsdyna/executable"
export LSPREPOST_PATH="path/to/lsprepost/executable"
```

## Usage
```python
import LS_toolbox as lst
```
