2025-01-05 22:13:57 +00:00
|
|
|
[tool.poetry]
|
2025-01-06 20:00:20 +00:00
|
|
|
name = "grimoire-ssg"
|
2025-01-06 20:40:00 +00:00
|
|
|
packages = [
|
2025-01-07 19:14:49 +00:00
|
|
|
{ include = "grimoiressg" }
|
2025-01-06 20:40:00 +00:00
|
|
|
]
|
2025-01-05 22:13:57 +00:00
|
|
|
version = "0.1.0"
|
2025-01-06 20:00:20 +00:00
|
|
|
description = "A minimalistic Static Site Generator"
|
|
|
|
authors = ["Sigma <git@sigma-star.io>"]
|
2025-01-06 20:32:09 +00:00
|
|
|
license = "BSD-2-Clause"
|
2025-01-05 22:13:57 +00:00
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2025-01-06 20:36:52 +00:00
|
|
|
python = "^3.10"
|
2025-01-05 22:13:57 +00:00
|
|
|
markdown = "^3.7"
|
|
|
|
jinja2 = "^3.1.5"
|
|
|
|
pyyaml = "^6.0.2"
|
|
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|