forked from falconry/falcon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (39 loc) · 1.34 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
45
46
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=47",
"wheel>=0.34",
"cython>=0.29.21; python_implementation == 'CPython'", # Skip cython when using pypy
]
[tool.towncrier]
package = "falcon"
package_dir = ""
filename = "docs/changes/3.1.0.rst"
directory = "docs/_newsfragments"
issue_format = "`#{issue} <https://github.com/falconry/falcon/issues/{issue}>`__"
# TODO(vytas): title_format = false seems to have no effect in towncrier==21.3.0.
# For now, we just have to remember to check the rendered changelog, and,
# if needed, remove the unwanted auto-generated title.
# See also: https://github.com/twisted/towncrier/issues/345.
title_format = false
[[tool.towncrier.type]]
directory = "breakingchange"
name = "Breaking Changes"
showcontent = true
[[tool.towncrier.type]]
directory = "newandimproved"
name = "New & Improved"
showcontent = true
[[tool.towncrier.type]]
directory = "bugfix"
name = "Fixed"
showcontent = true
[[tool.towncrier.type]]
directory = "misc"
name = "Misc"
showcontent = true
[tool.black]
target-version = ["py35"]
skip-string-normalization = true
line-length = 88
extend-exclude = "falcon/vendor"