clean-rst/pyproject.toml

23 lines
503 B
TOML
Raw Normal View History

2022-08-22 16:37:28 +00:00
[tool.poetry]
name = "clean-rst"
2022-09-04 08:44:22 +00:00
version = "0.1.4"
2022-08-22 16:37:28 +00:00
description = "pre-commit to clean rst index files"
authors = ["Bertrand Benjamin <benjamin.bertrand@opytex.org>"]
2022-08-22 18:53:02 +00:00
[tool.poetry.scripts]
clean-rst = "clean_rst.main:main"
2022-08-22 16:37:28 +00:00
[tool.poetry.dependencies]
python = "^3.10"
2022-08-22 18:53:02 +00:00
restructuredtext-lint = "^1.4.0"
GitPython = "^3.1.27"
2022-09-04 08:33:39 +00:00
click = "^8.1.3"
2022-08-22 16:37:28 +00:00
[tool.poetry.dev-dependencies]
pytest = "^5.2"
2022-08-22 16:39:27 +00:00
pre-commit = "^2.20.0"
2022-08-22 16:37:28 +00:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"