Metadata-Version: 2.4
Name: aerocaps
Version: 0.3.2
Summary: Toolkit for design of Class-A, parametric design of aerodynamic surfaces
Author-email: Matthew G Lauer <mlauer2015@gmail.com>
Keywords: aerodynamics,MDAO,MDO,parametric,airfoil system,surface modeling,surface design,NURBS,B-Spline
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Topic :: Scientific/Engineering
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: scipy
Requires-Dist: numpy
Requires-Dist: matplotlib
Requires-Dist: pyvista
Requires-Dist: pyiges
Requires-Dist: shapely
Requires-Dist: rust-nurbs>=0.23
Requires-Dist: triangle
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Dynamic: license-file

# AeroCaps
Toolkit for design of Class-A, parametric design of aerodynamic surfaces

## Installation

For installation of `aerocaps` using the latest stable release, open a terminal 
and use the following command:

```shell
pip install aerocaps
```

To install the bleeding-edge version instead, open a terminal 
and use the following command:

```shell
cd <Install-Parent-Location>
git clone https://github.com/mlau154/aerocaps.git
cd <Install-Parent-Location>/aerocaps
pip install .
```

## Updating

To update `aerocaps` to the newest version from the basic install, use

```shell
pip install aerocaps --upgrade
```

From the bleeding-edge version, use

```shell
cd <Install-Location>
git pull
pip install .
```
