-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
52 lines (47 loc) · 1.5 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
[project]
name = "prefligit"
version = "0.0.6"
description = "pre-commit reimplemented in Rust"
authors = [{ name = "j178", email = "[email protected]" }]
requires-python = ">=3.8"
keywords = [ "pre-commit", "git", "hooks" ]
readme = "README.md"
license = { file = "LICENSE" }
classfiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Rust",
"Topic :: Software Development :: Quality Assurance"
]
[project.urls]
Repository = "https://github.com/j178/prefligit"
Changelog = "https://github.com/j178/prefligit/blob/main/CHANGELOG.md"
Releases = "https://github.com/j178/prefligit/releases"
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
bindings = "bin"
include = [
{ path = "licenses/*", format = ["wheel", "sdist"]}
]
[tool.rooster]
version_tag_prefix = "v"
major_labels = [] # We do not use the major version number yet
minor_labels = ["breaking"]
changelog_ignore_labels = ["internal", "ci", "testing"]
changelog_sections.breaking = "Breaking changes"
changelog_sections.enhancement = "Enhancements"
changelog_sections.compatibility = "Enhancements"
changelog_sections.performance = "Performance"
changelog_sections.bug = "Bug fixes"
changelog_sections.documentation = "Documentation"
changelog_sections.__unknown__ = "Other changes"
changelog_contributors = true
version_files = [
"README.md",
"Cargo.toml",
]