1
0
Fork 0
mirror of https://git.lynn.is/Gwen/python-layout.git synced 2024-01-13 01:31:55 +01:00

Added project build file

This commit is contained in:
Lynn 2023-02-07 23:56:47 +01:00
parent abeae7f3c8
commit 83d86f9c5c

31
pyproject.toml Normal file
View file

@ -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"