-
Notifications
You must be signed in to change notification settings - Fork 161
/
Copy pathpyproject.toml
48 lines (38 loc) · 1.49 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[tool.poetry]
authors = ["Nathaniel Landau <[email protected]>"]
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"
repository = "https://github.com/natelandau/shell-scripting-templates"
version = "0.1.0"
[tool.poetry.dependencies]
commitizen = "^3.7.0"
poethepoet = "^0.22.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"]
[tool.poe.tasks]
[tool.poe.tasks.lint]
help = "Lint this package"
[[tool.poe.tasks.lint.sequence]]
shell = "poetry check"
[[tool.poe.tasks.lint.sequence]]
shell = "typos"
[[tool.poe.tasks.lint.sequence]]
shell = "yamllint ."
# [[tool.poe.tasks.lint.sequence]]
# shell = "shellcheck bin-*/*"
[[tool.poe.tasks.lint.sequence]]
shell = "pre-commit run --all-files"