1
0
Fork 0
mirror of https://git.lynn.is/Gwen/python-layout.git synced 2024-01-13 01:31:55 +01:00
python-layout/pyproject.toml
2023-02-08 00:20:38 +01:00

33 lines
864 B
TOML

[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="Gwen", email="me@gwendolyn.dev" },
{ name="Lynn", email="git@lynn.is" },
]
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"