These are notes to remind me how to do things on this project.
mdinfo uses poetry for dependency management.
Install poetry:
`pip install poetry`
To install the dependencies, run:
`poetry install`
mdinfo uses doit for building.
To build the project, run:
`doit`
mdinfo uses pytest for testing. The test suite can be run with the following command:
`poetry run pytest`
or
`doit test`
Use bump2version
to update the version number.
`poetry run bump2version [major|minor|patch] [--verbose] [--dry-run]`
The README.md is updated automatically using cogapp.
The README.md will be updated when running doit
.