Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 1.17 KB

File metadata and controls

45 lines (30 loc) · 1.17 KB

Poetry Environment Management

Adding Packages

poetry add <package>

Git Workflow

The default branch is dev. Features should be developed until complete before being merged into the main branch.

Each contributor should create a new branch. For example:

git checkout -b dev/feature1

How to submit:

git push origin dev/feature2

After pushing, create a Pull Request on GitHub to merge your changes into the dev branch.

Code Integration

For new projects, please place them under examples/project/. Once initial results are achieved, reusable components can be merged into the mpcompress/ directory.

Documentation

The documentation is built using Zensical — the successor to MkDocs Material, currently in development.

To get started, install the required packages:

pip install zensical
pip install mkdocstrings-python

Then, launch the local documentation server with:

zensical serve

Once the server is running, you can view the documentation at http://localhost:8000.