-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
33 lines (29 loc) · 896 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[build-system]
requires = ["maturin>=1.2,<2.0"]
build-backend = "maturin"
[project]
name = "pillow-jxl-plugin"
requires-python = ">=3.8"
authors = [
{ name = "Isotr0py" },
]
description = "Pillow plugin for JPEG-XL, using Rust for bindings."
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"packaging",
"Pillow",
]
[project.optional-dependencies]
dev = ["numpy", "pytest", "pyexiv2"]
[project.urls]
"Homepage" = "https://github.com/Isotr0py/pillow-jpegxl-plugin"
"Bug Tracker" = "https://github.com/Isotr0py/pillow-jpegxl-plugin/issues"
"Releases" = "https://github.com/Isotr0py/pillow-jpegxl-plugin/releases"
[tool.maturin]
features = ["pyo3/extension-module", "vendored"]