21 lines
475 B
TOML
21 lines
475 B
TOML
[project]
|
|
name = "castle-document"
|
|
version = "0.1.0"
|
|
description = "Castle document conversion tools"
|
|
requires-python = ">=3.11"
|
|
dependencies = []
|
|
|
|
[project.scripts]
|
|
docx2md = "document.docx2md:main"
|
|
pdf2md = "document.pdf2md:main"
|
|
html2text = "document.html2text:main"
|
|
md2pdf = "document.md2pdf:main"
|
|
mbox2eml = "document.mbox2eml:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/document"]
|