jack/pyproject.toml

27 lines
532 B
TOML
Raw Permalink Normal View History

2022-12-29 20:21:17 +01:00
[tool.poetry]
name = "jack"
version = "0.1.0"
description = "A simple and opiniated Markdown to HTML converter"
authors = ["Fred P <fred@grimbox.be>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
markdown = "^3.4.1"
jinja2 = "^3.1.2"
pyyaml = "^6.0"
pymdown-extensions = "^9.9"
2022-12-29 20:21:17 +01:00
2022-12-29 20:31:58 +01:00
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
black = "^22.12.0"
2023-01-02 18:31:06 +01:00
pytest-cov = "^4.0.0"
2022-12-29 20:31:58 +01:00
[tool.poetry.scripts]
jack = "jack.commands:run"
2022-12-29 20:21:17 +01:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"