fledge 0.11.1

Dev-lifecycle CLI — scaffolding, tasks, lanes, plugins, and more.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[template]
name = "python-cli"
description = "Python CLI application with Click and pyproject.toml"
min_fledge_version = "0.1.0"
requires = ["python3"]

[prompts]
description = { message = "Project description", default = "A new Python CLI" }

[files]
render = ["**/*.py", "**/*.toml", "**/*.md", "**/*.yml"]
copy = []
ignore = ["template.toml"]

[hooks]
post_create = ["python3 -m venv .venv", ".venv/bin/pip install --upgrade pip", ".venv/bin/pip install -e '.[dev]'"]