28 lines
651 B
TOML
28 lines
651 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "img2pdf"
|
|
version = "1.0.0"
|
|
description = "Convert a single image or folder of images into a PDF file (sorted by filename)."
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
license = { text = "MIT" }
|
|
|
|
authors = [
|
|
{ name = "Stu Leak", email = "leaktechnologies@proton.me" }
|
|
]
|
|
|
|
dependencies = [
|
|
"pillow>=10.0.0"
|
|
]
|
|
|
|
urls = {
|
|
"Homepage" = "https://git.leaktechnologies.dev/Leak-Technologies/img2pdf",
|
|
"Issues" = "https://git.leaktechnologies.dev/Leak-Technologies/img2pdf/issues"
|
|
}
|
|
|
|
[project.scripts]
|
|
img2pdf = "src.__main__:main"
|