File: pyproject.toml

package info (click to toggle)
plover 5.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,356 kB
  • sloc: python: 21,589; sh: 682; ansic: 25; makefile: 11
file content (76 lines) | stat: -rw-r--r-- 1,260 bytes parent folder | download
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = [
	"Babel",
	"PySide6-Essentials>=6.9.0",
	"setuptools>=79.0.0",
	"wheel",
]
build-backend = "setuptools.build_meta"

[tool.towncrier]
name = ""
version = ""
filename = "NEWS.md"
directory = "news.d"
template = "news.d/template.md"
title_format = "# v{version} ({project_date})\n\n"
underlines = ["", ""]

[[tool.towncrier.section]]
path = "feature"
name = "Features"

[[tool.towncrier.section]]
path = "bugfix"
name = "Bugfixes"

[[tool.towncrier.type]]
directory = "core"
name = "Core"
showcontent = true

[[tool.towncrier.type]]
directory = "dict"
name = "Dictionaries"
showcontent = true

[[tool.towncrier.type]]
directory = "ui"
name = "User Interface"
showcontent = true

[[tool.towncrier.type]]
directory = "linux"
name = "Linux"
showcontent = true

[[tool.towncrier.type]]
directory = "osx"
name = "macOS"
showcontent = true

[[tool.towncrier.type]]
directory = "windows"
name = "Windows"
showcontent = true

[[tool.towncrier.section]]
path = "api"
name = "API"

[[tool.towncrier.type]]
directory = "break"
name = "Breaking Changes"
showcontent = true

[[tool.towncrier.type]]
directory = "dnr"
name = "Deprecations"
showcontent = true

[[tool.towncrier.type]]
directory = "new"
name = "New"
showcontent = true

# vim: ft=cfg