-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (36 loc) · 1.08 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[build-system]
# pep 0518: minimum requirements for the build system to execute.
requires = ["setuptools", "wheel", "polyversion"] # PEP 508 specifications.
template_template_fname = '.towncrier_template.rst'
[tool.towncrier]
package = "polyvers"
filename = "CHANGES.rst"
directory = "changes.d"
[[tool.towncrier.type]]
directory = "break"
name = "Breaking Changes"
showcontent = true
[[tool.towncrier.type]]
directory = "feat"
name = "Features"
showcontent = true
[[tool.towncrier.type]]
directory = "drop"
name = "Deprecations and Removals"
showcontent = true
[[tool.towncrier.type]]
directory = "fix"
name = "Bugfixes"
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 = "chore"
name = "Misc"
showcontent = true