mirror of
https://github.com/natelandau/shell-scripting-templates.git
synced 2025-11-12 15:03:47 -05:00
27 lines
931 B
TOML
27 lines
931 B
TOML
[tool.poetry]
|
|
authors = ["Nathaniel Landau <nate@natelandau.com>"]
|
|
description = "Shell scripting utility functions and a bash script boilerplate templates"
|
|
homepage = "https://github.com/natelandau/shell-scripting-templates"
|
|
license = "MIT"
|
|
name = "shell-scripting-templates"
|
|
readme = "README.md"
|
|
version = "0.1.0"
|
|
|
|
[tool.poetry.dependencies]
|
|
commitizen = "^3.7.0"
|
|
pre-commit = "^3.3.3"
|
|
python = "^3.11"
|
|
typos = "^1.16.8"
|
|
yamllint = "^1.32.0"
|
|
|
|
[build-system]
|
|
build-backend = "poetry.core.masonry.api"
|
|
requires = ["poetry-core"]
|
|
|
|
[tool.commitizen]
|
|
bump_message = "bump(release): v$current_version → v$new_version"
|
|
tag_format = "v$version"
|
|
update_changelog_on_bump = true
|
|
version = "0.1.0"
|
|
version_files = ["pyproject.toml:version"]
|