10 lines
209 B
Python
10 lines
209 B
Python
|
|
"""Top-level package for Medeia-Macina.
|
||
|
|
|
||
|
|
This package provides the `cli_entry` module which exposes the `main()` entry
|
||
|
|
point used by command-line launchers.
|
||
|
|
"""
|
||
|
|
|
||
|
|
__all__ = ["cli_entry"]
|
||
|
|
|
||
|
|
__version__ = "0.1.0"
|