-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (36 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
46 lines (36 loc) · 1.23 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
[project]
name = "modern_colorthief"
authors = [
{ name = "baseplate-admin", email = "61817579+baseplate-admin@users.noreply.github.com" },
]
requires-python = ">3.10"
readme = "README.md"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/baseplate-admin/modern_colorthief"
documentation = "https://modern-colorthief.readthedocs.io"
repository = "https://github.com/baseplate-admin/modern_colorthief"
[project.scripts]
modern-colorthief = "modern_colorthief.cli:main"
[dependency-groups]
build = ["maturin>=1.11.5"]
docs = ["shibuya>=2025.10.21", "myst-parser>=3.0.1", "sphinx>=7.3.7"]
test = ["pytest>=8.2.1"]
bench = ["fast-colorthief>=0.0.5", "colorthief>=0.2.1"]
[tool.uv]
package = true
default-groups = ["docs", "test", 'bench']
[build-system]
requires = ["maturin>=1.4"]
build-backend = "maturin"
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "src/python"
module-name = "modern_colorthief._modern_colorthief"
[tool.maturin.generate-ci.github]
platforms = ["manylinux", "musllinux", "windows", "macos", "android"]