21 lines
439 B
TOML
21 lines
439 B
TOML
[project]
|
|
name = "document-converter"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Anibal Angulo", email = "a8065384@banorte.com" }
|
|
]
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"markitdown[pdf]>=0.1.2",
|
|
"pypdf>=6.1.2",
|
|
]
|
|
|
|
[project.scripts]
|
|
convert-md = "document_converter.markdown:app"
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.8.3,<0.9.0"]
|
|
build-backend = "uv_build"
|