-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (58 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
70 lines (58 loc) · 1.7 KB
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
[project]
name = "pygments-minimessage"
description = "A Pygments highlighter for the MiniMessage language"
authors = [
{ name = "zml", email = "zml@kyori.net" }
]
license = "MIT"
license-files = [ "license.txt" ]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"pygments (>=2.19.1,<3.0.0)"
]
keywords = [ "pygments", "lexer", "highlighting", "adventure" ]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Plugins",
]
dynamic = ["version"]
[project.entry-points."pygments.lexers"]
minimessage = "pygments_minimessage:MiniMessageLexer"
[project.urls]
homepage = "https://pygments-minimessage.kyori.net/"
repository = "https://github.com/KyoriPowered/pygments-minimessage"
issues = "https://github.com/KyoriPowered/pygments-minimessage/issues"
changelog = "https://github.com/KyoriPowered/pygments-minimessage/releases"
[tool.poetry]
dependencies.python = ">=3.12,<4.0"
version = "0.0.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.15.0"
pre-commit = "^4.1.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "^9.0.0"
furo = "^2025.0.0"
sphinx-design = "^0.7.0"
myst-parser = "^5.0.0"
sphinx-autobuild = "^2025.0.0"
sphinx-github-changelog = "^1.4.0"
[tool.poetry.requires-plugins]
poetry-dynamic-versioning = { version = ">=1.0.0,<2.0.0", extras = ["plugin"] }
[tool.poetry-dynamic-versioning]
enable = true
bump = true
dirty = true
[tool.ruff]
line-length = 120
indent-width = 2
[tool.ruff.lint]
select = [ "ASYNC", "E", "F", "I", "RUF" ]
ignore = [ "E501" ]
[tool.mdformat]
end_of_line = "keep"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"