initial commit: codex draft

This commit is contained in:
2026-02-04 21:29:17 -05:00
commit 68bfab9c17
19 changed files with 1838 additions and 0 deletions

20
pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "wp-materialize"
version = "0.1.0"
description = "Declarative compiler that materializes Markdown into WordPress posts."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"Markdown>=3.6",
]
[project.scripts]
wp-materialize = "wp_materialize.cli:main"
[tool.setuptools]
package-dir = { "wp_materialize" = "src" }
packages = ["wp_materialize"]