pospell/pyproject.toml

60 lines
1.1 KiB
TOML

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pospell"
authors = [
{name = "Julien Palard", email = "julien@palard.fr"},
]
description = "Spellcheck .po files containing reStructuredText translations"
keywords = [
"po",
"spell",
"gettext",
"reStructuredText",
"check",
"sphinx",
"translation",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
]
requires-python = ">= 3.7"
dependencies = [
"polib",
"docutils>=0.18",
"regex",
"sphinx-lint>=0.6.8",
]
dynamic = [
"version",
]
[project.license]
text = "MIT license"
[project.readme]
file = "README.md"
content-type = "text/markdown; charset=UTF-8"
[project.urls]
Homepage = "https://git.afpy.org/AFPy/pospell"
[project.scripts]
pospell = "pospell:main"
[tool.setuptools]
py-modules = [
"pospell",
]
include-package-data = false
[tool.setuptools.dynamic.version]
attr = "pospell.__version__"
[tool.black]