Metadata-Version: 2.4
Name: gundam-interface
Version: 0.1.0
Summary: User friendly Python interface for GUNDAM.
Author: Nadrino
License-Expression: LGPL-2.1-or-later
Keywords: gundam,interface,python
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering
Classifier: Typing :: Typed
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENCE
Requires-Dist: numpy
Requires-Dist: tqdm
Provides-Extra: dev
Requires-Dist: build; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Requires-Dist: ruff; extra == "dev"
Requires-Dist: twine; extra == "dev"
Dynamic: license-file

# gundam-interface

User friendly Python interface for GUNDAM.

The package is published as `gundam-interface` and imported as `gundam_interface`.

## Installation

```bash
pip install gundam-interface
```

For local development:

```bash
python -m venv .venv
source .venv/bin/activate
python -m pip install -U pip
python -m pip install -e ".[dev]"
```

## Usage

```python
import gundam_interface

print(gundam_interface.__version__)
```

## Build

```bash
python -m build
python -m twine check dist/*
```

## License

This project is distributed under the GNU Lesser General Public License v2.1 or later.
See [LICENCE](LICENCE) for details.
