-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
45 lines (41 loc) · 1.42 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "pandoc-plantuml-filter"
authors = [
{name = "Timo Furrer", email = "tuxtimo@gmail.com"},
]
description = "Pandoc filter for PlantUML code blocks"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["plantuml", "pandoc-filter", "pandoc"]
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"pandocfilters",
]
dynamic = ["version"]
[project.scripts]
pandoc-plantuml = "pandoc_plantuml_filter:main"
[tool.ruff]
line-length = 120
# Rule descriptions: https://docs.astral.sh/ruff/rules/
lint.select = ["I", "E", "B", "F", "W", "N", "C4", "C90", "ARG", "PL", "RUF", "UP"]
[tool.setuptools_scm]