Packaging¶
Glia packages use flit:
pip install flit
Creating a package¶
Use the following command, and fill out the prompts:
glia pkg new
This creates a template package that can be immediately published with flit publish.
You can change the version inside of __init__.py by changing __version__.
Adding mod files¶
Use the following command, and fill out the prompts:
glia pkg add path/to/file.mod
You can specify a different --name and --variant. Defaults to the file name without
extension and "0" respectively.