clean-rst/pyproject.toml

23 lines
503 B
TOML

[tool.poetry]
name = "clean-rst"
version = "0.1.4"
description = "pre-commit to clean rst index files"
authors = ["Bertrand Benjamin <benjamin.bertrand@opytex.org>"]
[tool.poetry.scripts]
clean-rst = "clean_rst.main:main"
[tool.poetry.dependencies]
python = "^3.10"
restructuredtext-lint = "^1.4.0"
GitPython = "^3.1.27"
click = "^8.1.3"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pre-commit = "^2.20.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"