27 lines
632 B
TOML
27 lines
632 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "mambler"
|
|
version = "0.1.0"
|
|
description = "Converts Markdown into Ancient Machine Book (AMB) format."
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"md2txt",
|
|
]
|
|
license = { file = "LICENSE" }
|
|
authors = [{ name = "Tobias Raayoni Last" }]
|
|
|
|
[project.scripts]
|
|
mambler = "mambler:main"
|
|
|
|
[tool.uv.sources]
|
|
md2txt = { git = "https://github.com/randogoth/md2txt", rev = "master" }
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/mambler"]
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = ["src/mambler", "README.md", "LICENSE"]
|