22 lines
485 B
TOML
22 lines
485 B
TOML
[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",
|
|
"py_gfm",
|
|
]
|
|
|
|
[project.scripts]
|
|
wp-materialize = "wp_materialize.cli:main"
|
|
|
|
[tool.setuptools]
|
|
package-dir = { "wp_materialize" = "src" }
|
|
packages = ["wp_materialize"]
|