source: trunk/towncrier.pyproject.toml @ 436cb8fd

Last change on this file since 436cb8fd was 436cb8fd, checked in by Jean-Paul Calderone <exarkun@…>, at 2018-08-06T16:13:33Z

A different work-around for the pep 518 mess

  • Property mode set to 100644
File size: 1.2 KB
Line 
1[tool.towncrier]
2    package = "allmydata"
3    package_dir = "src"
4    filename = "NEWS.rst"
5    directory = "newsfragments"
6    start_string = ".. towncrier start line"
7    title_format = "Release {version} ({project_date})"
8    issue_format = "`#{issue} <https://github.com/tahoe-lafs/tahoe-lafs/issues/{issue}>`_"
9    underlines = [
10        "'",
11        "-",
12        "~",
13    ]
14
15    [[tool.towncrier.type]]
16        directory = "incompat"
17        name = "Backwards Incompatible Changes"
18        showcontent = true
19
20    [[tool.towncrier.type]]
21        directory = "feature"
22        name = "Features"
23        showcontent = true
24
25    [[tool.towncrier.type]]
26        directory = "bugfix"
27        name = "Bug Fixes"
28        showcontent = true
29
30    [[tool.towncrier.type]]
31        directory = "installation"
32        name = "Dependency/Installation Changes"
33        showcontent = true
34
35    [[tool.towncrier.type]]
36        directory = "configuration"
37        name = "Configuration Changes"
38        showcontent = true
39
40    [[tool.towncrier.type]]
41        directory = "removed"
42        name = "Removed Features"
43        showcontent = true
44
45    [[tool.towncrier.type]]
46        directory = "other"
47        name = "Other Changes"
48        showcontent = true
Note: See TracBrowser for help on using the repository browser.