aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorPaul Ganssle <paul@ganssle.io>2018-03-24 10:39:13 -0400
committerPaul Ganssle <paul@ganssle.io>2018-03-24 12:47:47 -0400
commitbf1a79f0d6f3187cf81f80b155f564dd2143f6e5 (patch)
treefd49d9fb18cb5f47ea94c606496404d8dc39124c /pyproject.toml
parent3b51c98ef6103ae91cc95d884c18b02766571d91 (diff)
downloaddateutil-bf1a79f0d6f3187cf81f80b155f564dd2143f6e5.tar.gz
Add towncrier configuration
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml38
1 files changed, 38 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..5bd8fbe
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,38 @@
+[tool.towncrier]
+ package = "dateutil"
+ package_dir = "dateutil"
+ filename = "NEWS"
+ directory = "changelog.d"
+ issue_format = "GH #{issue}"
+ template = "changelog.d/template.rst"
+
+ [[tool.towncrier.type]]
+ directory = "data"
+ name = "Data updates"
+ showcontent = true
+
+ [[tool.towncrier.type]]
+ directory = "deprecations"
+ name = "Deprecations"
+ showcontent = true
+
+ [[tool.towncrier.type]]
+ directory = "feature"
+ name = "Features"
+ showcontent = true
+
+ [[tool.towncrier.type]]
+ directory = "bugfix"
+ name = "Bugfixes"
+ showcontent = true
+
+ [[tool.towncrier.type]]
+ directory = "doc"
+ name = "Documentation changes"
+ showcontent = true
+
+ [[tool.towncrier.type]]
+ directory = "misc"
+ name = "Misc"
+ showcontent = false
+