-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (55 loc) · 1.77 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
52
53
54
55
56
57
58
59
60
61
62
[project]
name = "mkdocs-towncrier"
version = "0.1.3"
description = "An insanely small plugin to add towncrier changelog draft into mkdocs"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mkdocs>=1.6.0,<1.7.0",
"towncrier>=24.7.0,<25.0.0",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: MkDocs",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Environment :: Plugins",
"Typing :: Typed",
]
[project.urls]
Repository = "https://github.com/davfsa/mkdocs-towncrier"
Issues = "https://github.com/davfsa/mkdocs-towncrier/issues"
CI = "https://github.com/davfsa/mkdocs-towncrier/actions"
Changelog = "https://github.com/davfsa/mkdocs-towncrier/releases"
[project.entry-points."mkdocs.plugins"]
towncrier = "mkdocs_towncrier:TowncrierPlugin"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.format]
docstring-code-format = true
docstring-code-line-length = 80
quote-style = "double"
line-ending = "lf"
skip-magic-trailing-comma = true
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"COM812", # May cause conflicts with the formatter
"ISC001", # May cause conflicts with the formatter
"D203", # Incompatible with D211
"D213", # Incompatible with D212
]
[tool.ruff.lint.isort]
required-imports = ["from __future__ import annotations"]
force-single-line = true