Metadata-Version: 2.1
Name: gustaf
Version: 0.0.7
Summary: Process and visualize geometries.
Home-page: https://github.com/tataratat/gustaf
Author: Jaewook Lee
Author-email: jaewooklee042@gmail.com
License: MIT
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Natural Language :: English
Classifier: Topic :: Scientific/Engineering
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# gustaf
Loyal butler for numerical-analysis-geometry processing and visualization.

## Installation
```
pip install gustaf
```
you can also get the latest version of gustaf by:
```
pip install git+https://github.com/tataratat/gustaf.git@main
```

### Dependencies

Gustaf has the following dependencies, while default dependencies will be installed directly during installation of the package, the optional dependencies must be installed by hand if the functionalities they provide are necessary.

|Package|Optional|pip|conda|Description|
|-------|:---:|---|-----|-----------|
|numpy|no|`pip install numpy`|`conda install numpy`|Necessary for computation|
|splinepy|yes|`pip install splinepy`|-|Necessary for any spline based functionality|
|vedo|yes|`pip install vedo`|`conda install -c conda-forge vedo`|Default renderer of gustaf, only needed if visualization is performed|
|scipy|yes|`pip install scipy`|`conda install scipy`|Necessary for vertex operations|
|meshio|yes|`pip install meshio`|`conda install -c conda-forge meshio`|Necessary for meshio mesh imports|
|pytest|yes|`pip install pytest`|`conda install pytest`|Necessary for testing of the package. Not needed for normal usage.|

If you install `gustaf` from source we recommend to also install `splinepy` from source, see the install instructions for this in the [splinepy docs](https://tataratat.github.io/splinepy).


## Quick Start
```
comming soon!
```

**But until then check out the `examples` folder, where some functionality is already shown.**

For some examples a submodule is necessary, this can be initialized via the commandline:

```
git submodule update --init
```

This submodule provides sample geometries.

Test version of documentations are available [here](https://tataratat.github.io/gustaf/)
