Metadata-Version: 2.1
Name: mkhelp
Version: 0.2
Summary: Support for docstrings in makefiles
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE

# MkHelp

_Support for docstrings in makefiles_

---

[![Documentation Status](https://readthedocs.org/projects/mkhelp/badge/?version=latest)](https://mkhelp.readthedocs.io/en/latest/?badge=latest)


Sometimes it is convenient to use a makefile as interface to development workflows.
The recipes are flexible, can depend on other targets and `make` provides tab completion.

With the script provided by this package it is easy to also get a help message describing important make targets.
Look at the `.DEFAULT_GOAL` and `bin/print_makefile_help.py` targets in the makefile to see how to set it up.
Once set up it could look something like

```text
$ make
Verbs:
 help: Print help message

Checks:
    check_all: Run all checks that have not yet passed
 check_format: Check format
   check_lint: Check lint
   check_dist: Check that distribution can be built and will render correctly on PyPi
   check_docs: Check that documentation can be built
   check_diff: Check that there are no untracked git changes
  check_tests: Check that unit tests pass
    check_tox: Check that unit tests pass in multiple environments
  check_types: Check types

Fixes:
 fix_format: Fix format

Nouns:
 bin/print_makefile_help.py: Update the script that generates the help message for this makefile
      build/docs/index.html: Build this documentation
```


One additional feature of this package is to export the docstrings in the makefile to other formats allowing them to be included in documentation.
Look at the `build/docs/index.html` target in the makefile to see how to set it up.
Once set up it could look something like the makefile page in the docs of this project.
