1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
[tool.commitizen]
tag_format = "v$version"
version = "2.0.0"
version_scheme = "pep440"
version_provider = "pep621"
# Set to true to allow bumping to 0.y.z from 0.(y-1).z when commit types normally trigger major bump.
# Recommended for initial development phases before 1.0.0.
major_version_zero = true
commit_msg_file = ".git/COMMIT_EDITMSG"
retry_after_failure = true
update_changelog_on_bump = true
[tool.commitizen.github]
release = true
release_asset_path = "dist/*"
release_asset_descriptions = { "*.tar.gz" = "Source distribution", "*.whl" = "Python Wheel" }
base_url = "https://github.com/dbatten/maison"
|