[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"] [project.urls] Homepage = "https://git.leaktechnologies.dev/stu/img2pdf" Issues = "https://git.leaktechnologies.dev/stu/img2pdf/issues" [project.scripts] img2pdf = "src.__main__:main"