-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 1.3 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "mkdocs-doubleslash-theme"
description = "doubleSlash Theme for MkDocs"
version = "1.1.1"
authors = [
{ name = "Jonas Häusler", email = "jonas.haeusler@doubleslash.de" },
{ name = "Elisabeth Lutat", email = "elisabeth.lutat@doubleslash.de" }
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mkdocs>=1.6",
"mkdocs-material>=9.7"
]
[tool.setuptools]
packages = ["mkdocs_doubleslash_theme"]
include-package-data = true
[tool.setuptools.package-data]
mkdocs_doubleslash_theme = ["assets/**/*", "overrides/**/*", "overrides/.icons/*"]
[project.entry-points."mkdocs.plugins"]
doubleslash-theme = "mkdocs_doubleslash_theme.plugin:DoubleSlashThemePlugin"
[tool.commitizen]
name = "cz_customize"
tag_format = "v$version"
version_provider = "uv"
version_files = [
"pyproject.toml:version"
]
[tool.commitizen.customize]
bump_pattern = '^(feat|fix|ci|build|perf|refactor|chore)'
bump_map = { feat = "MINOR", fix = "PATCH", ci = "PATCH", build = "PATCH", perf = "PATCH", refactor = "PATCH", 'chore' = "PATCH" }
schema_pattern = '^(build|ci|docs|feat|fix|perf|refactor|style|test|chore|revert|bump|chore)(\(\S+\))?\:?\s.*'
[dependency-groups]
dev = [
"commitizen>=3.31.0",
"ruff>=0.14.11",
]