-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 829 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 829 Bytes
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
[build-system]
requires = ["maturin>=1.4,<2.0"]
build-backend = "maturin"
[project]
name = "lutlib"
description = "A Python library for applying 3D LUTs to images."
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
authors = [
{email = "phyngk@gmail.com"},
{name = "phyng"}
]
maintainers = [
{name = "phyng", email = "phyngk@gmail.com"}
]
license = {file = "LICENSE"}
readme = "README.md"
keywords = ["lut", "3dlut", "3d-luts"]
[project.urls]
homepage = "https://github.com/phyng/lutlib"
documentation = "https://github.com/phyng/lutlib"
repository = "https://github.com/phyng/lutlib"
[tool.maturin]
features = ["pyo3/extension-module"]