Skip to content

Commit a3a16c3

Browse files
committed
Add pyproject.toml
1 parent be293a9 commit a3a16c3

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

pyproject.toml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
[build-system]
2+
requires = ["setuptools >= 70.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 = " BSD-3-Clause"
12+
license-files = ["LICEN[CS]E*", "AUTHORS"]
13+
authors = [
14+
{name = "Matthew Tretter", email = "m@tthewwithanm.com"},
15+
]
16+
maintainers = [
17+
{name = "Bryan Veloso"},
18+
{name = "Matthew Tretter"},
19+
{name = "Chris Drackett"},
20+
{name = "Greg Newma"},
21+
{name = "Venelin Stoykov"},
22+
]
23+
dependencies = [
24+
"Pillow>=7.0",
25+
]
26+
classifiers = [
27+
"Development Status :: 5 - Production/Stable",
28+
"Intended Audience :: Developers",
29+
"Operating System :: OS Independent",
30+
"Programming Language :: Python :: 3.8",
31+
"Programming Language :: Python :: 3.9",
32+
"Programming Language :: Python :: 3.10",
33+
"Programming Language :: Python :: 3.11",
34+
"Programming Language :: Python :: 3.12",
35+
"Programming Language :: Python :: 3.13",
36+
"Programming Language :: Python :: 3.14",
37+
"Topic :: Utilities",
38+
]
39+
40+
[dependency-groups]
41+
dev = ["pytest", "pytest-cov"]
42+
43+
[project.urls]
44+
Documentation = "https://pilkit.readthedocs.io/en/latest/"
45+
Repository = "https://github.com/matthewwithanm/pilkit.git"
46+
Issues = "https://github.com/matthewwithanm/pilkit/issues"

0 commit comments

Comments
 (0)