aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorPaul Ganssle <paul@ganssle.io>2018-05-14 10:30:16 -0400
committerPaul Ganssle <paul@ganssle.io>2018-05-14 15:02:58 -0400
commit5c90644b2d81207869cd21c052b223d984f30340 (patch)
tree3d1bc86965869d8f4c5022a034d30a0c72563576 /pyproject.toml
parent849d0616c3755588a60998ac286f8ff045eb1a95 (diff)
downloadexternal_python_setuptools-5c90644b2d81207869cd21c052b223d984f30340.tar.gz
external_python_setuptools-5c90644b2d81207869cd21c052b223d984f30340.tar.bz2
external_python_setuptools-5c90644b2d81207869cd21c052b223d984f30340.zip
Add configuration for towncrier
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml34
1 files changed, 34 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 00000000..cffd0e9a
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,34 @@
+[tool.towncrier]
+ package = "setuptools"
+ package_dir = "setuptools"
+ filename = "CHANGES.rst"
+ directory = "changelog.d"
+ title_format = "v{version}"
+ issue_format = "#{issue}"
+ template = "towncrier_template.rst"
+ underlines = ["-"]
+
+ [[tool.towncrier.type]]
+ directory = "deprecation"
+ name = "Deprecations"
+ showcontent = true
+
+ [[tool.towncrier.type]]
+ directory = "breaking"
+ name = "Breaking Changes"
+ showcontent = true
+
+ [[tool.towncrier.type]]
+ directory = "change"
+ name = "Changes"
+ showcontent = true
+
+ [[tool.towncrier.type]]
+ directory = "doc"
+ name = "Documentation changes"
+ showcontent = true
+
+ [[tool.towncrier.type]]
+ directory = "misc"
+ name = "Misc"
+ showcontent = true