img2pdf/pyproject.toml

24 lines
628 B
TOML

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