Implement basic article rendering

This commit is contained in:
2026-08-04 04:00:25 +02:00
parent e7c41cd68e
commit cb48dc035a
5 changed files with 211 additions and 11 deletions
+4 -1
View File
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "omicron-ssg"
version = "0.1.0"
requires-python = ">=3.11"
requires-python = ">=3.14"
dependencies = [
"Jinja2",
"markdown-it-py",
@@ -19,3 +19,6 @@ ossg = "omicron.ssg.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["omicron.ssg*"]
[tool.setuptools.package-data]
"omicron.ssg" = ["templates/**/*"]