forked from sphinx-contrib/sphinx-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (37 loc) · 1.1 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sphinx-lint"
description = "Check for stylistic and formal issues in .rst and .py files included in the documentation."
readme = "README.md"
license = {text = "PSF License"}
authors = [
{name = "Georg Brandl", email = "[email protected]"},
{name = "Julien Palard", email = "[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Documentation :: Sphinx",
"Intended Audience :: Developers",
"License :: OSI Approved :: Python Software Foundation License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
]
requires-python = ">= 3.7"
dependencies = [
"regex",
"polib",
]
dynamic = ["version"]
[project.urls]
repository = "https://github.com/sphinx-contrib/sphinx-lint"
[project.scripts]
sphinx-lint = "sphinxlint.__main__:main"
[tool.setuptools]
packages = ["sphinxlint"]
include-package-data = false
dynamic.version.attr = "sphinxlint.__version__"
[tool.black]
[tool.pylint.variables]
callbacks = ["check_"]