-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.31 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (46 loc) · 1.31 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
42
43
44
45
46
47
48
49
50
51
52
53
54
[project]
name = "cz-mono"
version = "0.1.0"
description = "A Mono version scheme plugin for Commitizen"
authors = [
{ name = "Yazdan Ranjbar", email = "yazdanra@icloud.com" }
]
readme = "README.md"
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: MIT License",
]
requires-python = ">=3.10"
dependencies = [
"commitizen>=4.13.0",
]
[dependency-groups]
dev = [
"prek>=0.3.1",
"pytest>=9.0.2",
]
[build-system]
requires = ["uv_build>=0.9.17,<0.10.0"]
build-backend = "uv_build"
[project.entry-points."commitizen.scheme"]
mono = "cz_mono.mono_version_scheme:MonoVersion"
[tool.ruff]
line-length = 120
[tool.ruff.format]
docstring-code-format = true
[tool.commitizen]
version_scheme = "pep440"
version_provider = "uv"
update_changelog_on_bump = true
breaking_change_exclamation_in_title = true