2025-09-23 02:41:32 +02:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools>=61.0"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "markitect"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "Advanced Markdown engine for structured content"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
requires-python = ">=3.8"
|
2025-09-26 02:02:00 +02:00
|
|
|
dependencies = ["markdown-it-py", "PyYAML", "click>=8.0.0", "tabulate>=0.9.0", "jsonpath-ng>=1.5.0"]
|
2025-09-25 02:31:27 +02:00
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
markitect = "markitect.cli:main"
|
2025-09-23 02:41:32 +02:00
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
|
include = ["markitect*"]
|
|
|
|
|
exclude = ["tests*", "wiki*", "tddai*"]
|