Pi66

merodi
A markdown-based static site generator.
git clone https://git.pi66.xyz/merodi

pyproject.toml

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[project]
name = "merodi"
version = "0.4.1"
description = "A markdown-based static site generator."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
    "markdown",
    "jinja2",
    "pywebview",
    "watchdog",
    "PyGObject",
    "pymdown-extensions",
    "latex2mathml",
    "pygments",
    "ifaddr",
]

[project.scripts]
merodi = "src.main:main"

[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]

[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"