Skip to content

Commit 1c22295

Browse files
committed
configure towncrier to show Miscellaneous content
1 parent 3cffc2a commit 1c22295

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

pyproject.toml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,48 @@ filename = "docs/source/history.rst"
44
directory = "newsfragments"
55
underlines = ["-", "~", "^"]
66
issue_format = "`#{issue} <https://github.com/python-trio/trio-asyncio/issues/{issue}>`__"
7+
8+
[[tool.towncrier.type]]
9+
directory = "feature"
10+
name = "Features"
11+
showcontent = true
12+
13+
[[tool.towncrier.type]]
14+
directory = "bugfix"
15+
name = "Bugfixes"
16+
showcontent = true
17+
18+
[[tool.towncrier.type]]
19+
directory = "doc"
20+
name = "Improved documentation"
21+
showcontent = true
22+
23+
[[tool.towncrier.type]]
24+
directory = "removal"
25+
name = "Deprecations and removals"
26+
showcontent = true
27+
28+
[[tool.towncrier.type]]
29+
directory = "misc"
30+
name = "Miscellaneous"
31+
showcontent = true
32+
33+
[tool.poetry]
34+
name = "trio-asyncio"
35+
version = "0.1.0"
36+
description = ""
37+
authors = ["Your Name <you@example.com>"]
38+
39+
[tool.poetry.dependencies]
40+
python = "^3.6"
41+
42+
[tool.poetry.dev-dependencies]
43+
towncrier = "^19.2.0"
44+
pytest = "^6.2.1"
45+
pytest-cov = "^2.10.1"
46+
pytest-trio = "^0.7.0"
47+
outcome = "^1.1.0"
48+
49+
[build-system]
50+
requires = ["poetry-core>=1.0.0"]
51+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)