Skip to content

Commit f776935

Browse files
committed
Add pyproject.toml
1 parent bb02401 commit f776935

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

pyproject.toml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
[build-system]
2+
requires = ["setuptools >= 75.0.0"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "pilkit"
7+
description = "A collection of utilities and processors for the Python Imaging Library."
8+
dynamic = ["version"]
9+
requires-python = ">= 3.8"
10+
readme = "README.rst"
11+
license = { text = "BSD-3-Clause" }
12+
authors = [
13+
{name = "Matthew Tretter", email = "m@tthewwithanm.com"},
14+
]
15+
maintainers = [
16+
{name = "Bryan Veloso"},
17+
{name = "Matthew Tretter"},
18+
{name = "Chris Drackett"},
19+
{name = "Greg Newma"},
20+
{name = "Venelin Stoykov"},
21+
]
22+
dependencies = [
23+
"Pillow>=7.0",
24+
]
25+
classifiers = [
26+
"Development Status :: 5 - Production/Stable",
27+
"Intended Audience :: Developers",
28+
"Operating System :: OS Independent",
29+
"Programming Language :: Python :: 3.8",
30+
"Programming Language :: Python :: 3.9",
31+
"Programming Language :: Python :: 3.10",
32+
"Programming Language :: Python :: 3.11",
33+
"Programming Language :: Python :: 3.12",
34+
"Programming Language :: Python :: 3.13",
35+
"Programming Language :: Python :: 3.14",
36+
"Topic :: Utilities",
37+
]
38+
39+
[dependency-groups]
40+
dev = ["pytest", "pytest-cov"]
41+
42+
[project.urls]
43+
Documentation = "https://pilkit.readthedocs.io/en/latest/"
44+
Repository = "https://github.com/matthewwithanm/pilkit.git"
45+
Issues = "https://github.com/matthewwithanm/pilkit/issues"

0 commit comments

Comments
 (0)