Metadata-Version: 2.4
Name: determa
Version: 0.2.0
Summary: Umbrella launcher for the Determa family — git-style dispatch to determa-<product> commands
Project-URL: Homepage, https://github.com/fruwehq/determa
Project-URL: Repository, https://github.com/fruwehq/determa
Project-URL: Issues, https://github.com/fruwehq/determa/issues
Author: Christian-Manuel Butzke
License: MIT License
        
        Copyright (c) 2026 Christian-Manuel Butzke
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: cli,determa,dispatcher,launcher,statechart
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development
Requires-Python: >=3.9
Provides-Extra: all
Requires-Dist: determa-state; extra == 'all'
Provides-Extra: dev
Requires-Dist: pytest>=8; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Provides-Extra: state
Requires-Dist: determa-state; extra == 'state'
Description-Content-Type: text/markdown

# determa

The **umbrella launcher** for the [Determa](https://github.com/fruwehq/determa) family.

`determa` is a thin, git-style dispatcher: `determa <product> …` finds and runs the
`determa-<product>` command on your `PATH`.

```console
$ pip install "determa[state]"     # launcher + the statechart engine
$ determa state run machine.yaml   # → determa-state run machine.yaml
$ determa list                     # installed products
$ determa --version
```

- `pip install determa` — just the launcher.
- `pip install "determa[state]"` — launcher + [`determa-state`](https://pypi.org/project/determa-state/).
- `pip install "determa[all]"` — launcher + the whole family.

The launcher is language-agnostic: it dispatches to whichever `determa-state` is on
`PATH`, be it the Python or the Rust build. It ships no `determa/__init__.py`, so it
coexists cleanly with `determa.state` as a PEP 420 namespace.

## License

MIT
