Initial commit

Initial structure with little functionality
This commit is contained in:
2026-07-27 00:11:50 +02:00
commit e7c41cd68e
7 changed files with 107 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "omicron-ssg"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"Jinja2",
"markdown-it-py",
"Pygments",
"PyYAML",
]
[project.scripts]
ossg = "omicron.ssg.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["omicron.ssg*"]