35 lines
612 B
TOML
35 lines
612 B
TOML
[project]
|
|
name = "stsg"
|
|
dependencies = [
|
|
"watchdog~=6.0.0",
|
|
"markdown~=3.3.6",
|
|
"bs4~=0.0.2",
|
|
"toml~=0.10.2",
|
|
"jinja2~=3.1.6",
|
|
]
|
|
dynamic = []
|
|
authors = []
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
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
|
|
|