STSG/pyproject.toml
2025-05-22 11:56:06 +02:00

35 lines
612 B
TOML

[project]
name = "stsg"
dependencies = [
"watchdog~=6.0.0",
"markdown2~=2.5.3",
"bs4~=0.0.2",
"toml~=0.10.2",
"jinja2~=3.1.6",
]
dynamic = []
authors = []
readme = "README.md"
requires-python = ">=3.8"
classifiers = []
version = "0.0.0"
[project.scripts]
stsg = "stsg.__main__:build"
stsg_dev = "stsg.__main__:hot_reload"
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = ["stsg/*.py"]
[tool.hatch.build.targets.wheel]
packages = ["stsg"]
[tool.hatch.metadata]
allow-direct-references = true