Metadata-Version: 2.4
Name: shipshape
Version: 0.1.0
Summary: Open-source parametric vessel design and validation library
Project-URL: Homepage, https://github.com/solar-proa/shipshape
Project-URL: Repository, https://github.com/solar-proa/shipshape
Author-email: Solar Proa <solar.proa@gmail.com>
License-Expression: MIT
License-File: LICENSE
Keywords: hydrostatics,naval-architecture,structural-validation,vessel-design
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.10
Requires-Dist: numpy
Provides-Extra: diagrams
Requires-Dist: matplotlib; extra == 'diagrams'
Description-Content-Type: text/markdown

# shipshape

Open-source parametric vessel design and validation library.

## Installation

```
pip install shipshape
```

## Usage

```python
from shipshape.parameter import compute_derived
from shipshape.validate_structure import run_validation

# Compute derived parameters from base parameters
params = compute_derived(base_params)

# Run structural validation
results = run_validation(params, mass_data)
```
