-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (41 loc) · 1.19 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
47
48
49
50
51
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/pymunin/_version.py"
[tool.towncrier]
package = "pymunin"
package_dir = "src"
name = "PyMunin3"
filename = "CHANGELOG.rst"
directory = "changelog.d"
issue_format = "`#{issue} <https://github.com/penguinpee/PyMunin3/issues/{issue}>`_"
[[tool.towncrier.type]]
directory = "removal"
name = "Removals & Deprecations"
showcontent = true
[[tool.towncrier.type]]
directory = "doc"
name = "Documentation Changes"
showcontent = true
[[tool.towncrier.type]]
directory = "feature"
name = "New Features"
showcontent = true
[[tool.towncrier.type]]
directory = "bugfix"
name = "Fixed Bugs"
showcontent = true
[[tool.towncrier.type]]
directory = "misc"
name = "Misc"
showcontent = false
[tool.black]
[tool.flakeheaven]
format = "colored"
max_line_length = "88" # Black's default
show_source = true
exclude = ["*.md"]
[tool.flakeheaven.plugins]
pycodestyle = ["-*"] # We use Black for code style
pyflakes = ["+*"]