Generate docs from your cookiecutter template
Project description
cookiecutter-autodocs
Generate docs for a cookiecutter template's inputs. Pre-commit hook and github-action
Why?
Cookiecutter is a powerful tool to create templates for all sorts of projects, but one of its downsides is it relies on a plain JSON file for its input (cookiecutter.json). Because JSON does not allow comments, you cannot document your inputs without writing the documentation separately.
cookiecutter-autodocs allows you to write your Cookiecutter's input as a Toml file, cookiecutter.desc. In this file you can add defaults, info about the variable type, and a description of each variable.
An example cookiecutter.desc
[project_slug]
default = "new_project"
description = "The name of the project."
type = "string"
[python_version]
default = "3.11.2"
description = "What python version to use with this project"
type = "string"
[dev_requirements]
default = []
description = "What dev requirements does this project have"
type = "list(string)"
[author]
default = ""
description = "Who's the author?"
type = "string"
You can then generate a cookiecutter.json
from this cookiecutter.desc
file.
cookiecutter-autodocs generate cookiecutter -i cookiecutter.decs -o cookiecutter.json
cat cookiecutter.json
{
"project_slug": "new_project",
"python_version": "3.11.2",
"dev_requirements": [],
"author": ""
}
You can also use the cookiecutter.desc
file to generate additional documentation, like a markdown table:
cookiecutter-autodocs generate markdown -i cookiecutter.desc
+-----------------------------------------------------------------------------------------------+
| name | description | default | type |required|
+----------------+--------------------------------------------+-----------+------------+--------+
| project_slug | The name of the project. |new_project| string | False |
+----------------+--------------------------------------------+-----------+------------+--------+
| python_version |What python version to use with this project| 3.11.2 | string | False |
+----------------+--------------------------------------------+-----------+------------+--------+
|dev_requirements|What dev requirements does this project have| [] |list(string)| False |
+----------------+--------------------------------------------+-----------+------------+--------+
| author | Who's the author? | | string | True |
+-----------------------------------------------------------------------------------------------+
Installation
CLI
pip install cookiecutter-autodocs
Documentation
See ReadTheDocs for usage and more detailed documentation.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for cookiecutter_autodocs-0.0.3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | e97e1579b8a9071c64ec31c2ea0e0c401976f057b4ba6f91ac25a9cfaedc6f56 |
|
MD5 | ccca72527e42e7dc0efe2d8f12c553fa |
|
BLAKE2b-256 | c8703baba7605d50cfd55e73e4da61cdb18db25250fc6aa415d40df472ff2a95 |
Hashes for cookiecutter_autodocs-0.0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a2947db26b55d0162cee266bea97ffa1ada51928ef9551c42587523a7cb8631 |
|
MD5 | 9525f422c790f395fade7a40da776f2a |
|
BLAKE2b-256 | c96d1c00c06986561c7f285d64b3cb1bf7dc6c34df65fcd545a774ed8a07012a |