Metadata-Version: 2.4
Name: lagra-api
Version: 0.0.1
Summary: Public API surface for the Lagra physics engine
Author: Lagra Contributors
License: MIT
Project-URL: Homepage, https://lagra.net
Project-URL: Source, https://github.com/PimDeWitte/lagra
Project-URL: Documentation, https://lagra.net/about
Keywords: physics,simulation,lagrangian,molecular-dynamics,rigid-body
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 :: Physics
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: lagra>=0.0.1

# lagra-api

This package name is reserved for the [Lagra physics engine](https://lagra.net).

Installing this package transitively installs the canonical [`lagra`](https://pypi.org/project/lagra/) package — `pip install lagra-api` is equivalent to `pip install lagra`. The `lagra_api` import re-exports `lagra`'s public surface, so the following both work after install:

```python
import lagra
import lagra_api    # same module surface as `lagra`
```

The intent of this metapackage is to keep related names (e.g. `lagra-engine`, `lagra-quantum`, `lagra-mcp`) pointing to one canonical engine while leaving room for split-out subpackages in the future.

- Source: https://github.com/PimDeWitte/lagra
- Docs:   https://lagra.net/about
- Issues: https://github.com/PimDeWitte/lagra/issues
