tahoe-lafs/pyproject.toml

69 lines
1.8 KiB
TOML
Raw Normal View History

# https://setuptools.pypa.io/en/latest/build_meta.html
# https://github.com/pypa/setuptools_scm
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/allmydata/_version.py"
tag_regex = "^tahoe-lafs-(?P<version>[vV]?\\d+(?:\\.\\d+){0,2}[^\\+]*)(?:\\+.*)?$"
2018-04-24 13:26:14 +00:00
[tool.towncrier]
2019-04-09 21:33:55 +00:00
package_dir = "src"
package = "allmydata"
2018-04-24 13:26:14 +00:00
filename = "NEWS.rst"
directory = "newsfragments"
start_string = ".. towncrier start line"
2018-08-06 14:48:38 +00:00
title_format = "Release {version} ({project_date})"
2020-02-07 14:27:02 +00:00
issue_format = "`#{issue} <https://tahoe-lafs.org/trac/tahoe-lafs/ticket/{issue}>`_"
2018-08-06 14:45:42 +00:00
underlines = [
"'",
"-",
"~",
]
2018-04-24 13:26:14 +00:00
[[tool.towncrier.type]]
directory = "incompat"
name = "Backwards Incompatible Changes"
2018-04-24 13:26:14 +00:00
showcontent = true
[[tool.towncrier.type]]
directory = "feature"
name = "Features"
showcontent = true
[[tool.towncrier.type]]
directory = "bugfix"
name = "Bug Fixes"
2018-04-24 13:26:14 +00:00
showcontent = true
[[tool.towncrier.type]]
directory = "installation"
name = "Dependency/Installation Changes"
2018-04-24 13:26:14 +00:00
showcontent = true
[[tool.towncrier.type]]
directory = "configuration"
name = "Configuration Changes"
2018-04-24 13:26:14 +00:00
showcontent = true
[[tool.towncrier.type]]
directory = "documentation"
name = "Documentation Changes"
showcontent = true
2018-04-24 13:26:14 +00:00
[[tool.towncrier.type]]
directory = "removed"
name = "Removed Features"
showcontent = true
[[tool.towncrier.type]]
directory = "other"
name = "Other Changes"
2018-04-24 13:26:14 +00:00
showcontent = true
2019-02-27 11:37:28 +00:00
[[tool.towncrier.type]]
directory = "minor"
name = "Misc/Other"
showcontent = false