1[tool.towncrier]
2    package = "towncrier"
3    package_dir = "src"
4    filename = "NEWS.rst"
5    issue_format = "`#{issue} <https://github.com/hawkowl/towncrier/issues/{issue}>`_"
6
7    [[tool.towncrier.section]]
8        path = ""
9
10    [[tool.towncrier.type]]
11        directory = "feature"
12        name = "Features"
13        showcontent = true
14
15    [[tool.towncrier.type]]
16        directory = "bugfix"
17        name = "Bugfixes"
18        showcontent = true
19
20    [[tool.towncrier.type]]
21        directory = "doc"
22        name = "Improved Documentation"
23        showcontent = true
24
25    [[tool.towncrier.type]]
26        directory = "removal"
27        name = "Deprecations and Removals"
28        showcontent = true
29
30    [[tool.towncrier.type]]
31        directory = "misc"
32        name = "Misc"
33        showcontent = false
34