From 83d86f9c5c98d2ecabdd541b09b58d5caec6120b Mon Sep 17 00:00:00 2001 From: Lynn Date: Tue, 7 Feb 2023 23:56:47 +0100 Subject: [PATCH] Added project build file --- pyproject.toml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..d9fb780 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,31 @@ +[build-system] +requires = ["setuptools>=61.0", "wheel"] +build-backend = "setuptools.build_meta" + +[tool.setuptools] +packages = ["pillow_layout", "pillow_layout.internal"] + +[project] +name = "Pillow-Layout" +version = "0.1" +description = "Simple layout engine for Python Pillow images" +readme = "readme.md" +authors = [ + { name="Gwendolyn", email="me@gwendolyn.dev" }, +] +classifiers = [ + "Development Status :: 4 - Beta", + "Operating System :: OS Independent", + "Intended Audience :: Developers", + "Programming Language :: Python :: 3 :: Only", + "Topic :: Software Development :: Libraries :: Python Modules", + "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", +] + +requires-python = ">=3.7" +dependencies = [ + "Pillow>=9.4.0", +] + +[project.urls] +"repository" = "https://git.lynn.is/Gwen/Pillow-Layout"