mambler/pyproject.toml

28 lines
632 B
TOML
Raw Normal View History

2025-10-20 22:47:29 +03:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
2025-10-20 20:54:19 +03:00
[project]
name = "mambler"
version = "0.1.0"
2025-10-20 22:25:49 +03:00
description = "Converts Markdown into Ancient Machine Book (AMB) format."
2025-10-20 20:54:19 +03:00
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"md2txt",
]
2025-10-20 22:47:29 +03:00
license = { file = "LICENSE" }
authors = [{ name = "Tobias Raayoni Last" }]
[project.scripts]
mambler = "mambler:main"
2025-10-20 20:54:19 +03:00
[tool.uv.sources]
2025-10-20 22:31:19 +03:00
md2txt = { git = "https://github.com/randogoth/md2txt", rev = "master" }
2025-10-20 22:47:29 +03:00
[tool.hatch.build.targets.wheel]
packages = ["src/mambler"]
[tool.hatch.build.targets.sdist]
include = ["src/mambler", "README.md", "LICENSE"]