-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (47 loc) · 1.32 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
49
50
51
52
53
54
55
[project]
name = "ubump"
version = "0.1.15"
description = "Yet another bump tool"
keywords = ["bump", "bumpversion", "bump2version", "bump-version", "bumper", "bumping", "version", "versioning"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Topic :: Software Development",
"Topic :: Software Development :: Version Control",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
authors = [
{ name = "vd", email = "ubump@vd2.org" },
]
dependencies = [
"packaging~=23.2",
"tomlkit~=0.12.3",
]
requires-python = ">=3.11,<4.0"
readme = "README.md"
license = { file = "LICENSE" }
[project.urls]
homepage = "https://github.com/vd2org/ubump"
repository = "https://github.com/vd2org/ubump.git"
issues = "https://github.com/vd2org/ubump/issues"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"pytest~=8.0.1",
"requests>=2.31.0",
]
[project.scripts]
ubump = "ubump.main:main"
[tool.ubump]
template = "v${major}.${minor}.${patch}"
message = "Bump to ${version}"
tag = true
files = ['src/ubump/main.py']