Skip to content

Commit

Permalink
Add some metadata to pyproject.toml (#52)
Browse files Browse the repository at this point in the history
The PyPI page didn't have a URL to the repository, so I added it to the pyproject.toml so it's reflected in the package metadata.
  • Loading branch information
LawrenceJGD authored Jul 18, 2024
1 parent d308b3d commit ad48f09
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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",
Expand All @@ -15,5 +21,10 @@ dependencies = [
"Pillow",
]

[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"]

0 comments on commit ad48f09

Please sign in to comment.