-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
41 lines (34 loc) · 1.19 KB
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
[project]
name = "scripts"
description = "PowerShell scripts to streamline common tasks in Python projects"
authors = [{ name = "Angelo Peronio" }]
license = "MIT"
keywords = ["Python", "PowerShell", "uv"]
version = "0.1.4"
readme = "README.md"
requires-python = ">= 3.13"
[dependency-groups]
dev = ["bump-my-version", "mkdocs-material", "prek"]
# We do not define the [build-system] table, to tell uv
# that this project has no Python package to be installed.
# https://docs.astral.sh/uv/concepts/projects/config/#build-systems
[project.urls]
Repository = "https://github.com/angelo-peronio/scripts"
Issues = "https://github.com/angelo-peronio/scripts/issues"
[tool.bumpversion]
tag = true
tag_name = "v{new_version}"
tag_message = "Version v{new_version}"
commit = true
[[tool.bumpversion.files]]
filename = "CHANGELOG.md"
search = '''
## Unreleased
'''
replace = '''
## Unreleased
## scripts {new_version} - {utcnow:%Y-%m-%d}
[Download](https://github.com/angelo-peronio/scripts/releases/download/v{new_version}/scripts-v{new_version}.zip)
· [GitHub release](https://github.com/angelo-peronio/scripts/releases/tag/v{new_version})
· [source](https://github.com/angelo-peronio/scripts/tree/v{new_version})
'''