mirror of
https://github.com/release-engineering/repo-autoindex.git
synced 2025-02-23 13:42:52 +00:00
31 lines
679 B
TOML
31 lines
679 B
TOML
[tool.poetry]
|
|
name = "repo-autoindex"
|
|
version = "0.1.1"
|
|
description = "Generic static HTML indexes of various repository types"
|
|
authors = ["Rohan McGovern <rmcgover@redhat.com>"]
|
|
license = "GPLv3"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.9,<4"
|
|
aiohttp = ">=3.8.1"
|
|
defusedxml = ">=0.7.1"
|
|
Jinja2 = ">=3.1.2"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = ">=7.1.2"
|
|
mypy = ">=0.961"
|
|
pytest-asyncio = ">=0.18.3"
|
|
pytest-cov = ">=3.0.0"
|
|
|
|
[tool.poetry.scripts]
|
|
"repo-autoindex" = "repo_autoindex._impl.cmd:entrypoint"
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|