-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (61 loc) · 1.8 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "commitizen-wails"
version = "0.2.2"
description = "A commitizen version provider for Wails."
authors = [
{ name = "YogiLiu", email = "[email protected]" }
]
dependencies = [
"commitizen>=3.29.0",
]
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">= 3.8"
keywords = ["commitizen", "wails"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Homepage = "https://github.com/YogiLiu/commitizen-wails"
Documentation = "https://github.com/YogiLiu/commitizen-wails"
Repository = "https://github.com/YogiLiu/commitizen-wails"
Issues = "https://github.com/YogiLiu/commitizen-wails/issues"
Changelog = "https://github.com/YogiLiu/commitizen-wails/blob/main/CHANGELOG.md"
[project.entry-points."commitizen.provider"]
wails-provider = "commitizen_wails:WailsVersionProvider"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.3.2",
"pytest-mock>=3.14.0",
]
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "pep440"
version_provider = "pep621"
update_changelog_on_bump = true
major_version_zero = true
[[tool.mypy.overrides]]
module = [
"commitizen.config",
"commitizen.providers",
"pytest_mock",
"commitizen_wails.provider"
]
ignore_missing_imports = true
[tool.pytest]
python_paths = ['.venv']
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/commitizen_wails"]