-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 lines (37 loc) · 1.16 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
[[tool.poetry.source]]
name = "pypi-public"
url = "https://pypi.org/simple/"
[build-system]
requires = ["maturin>=1.5,<2.0"]
build-backend = "maturin"
[project]
name = "modern_colorthief"
requires-python = ">3.9"
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"
[tool.poetry.dependencies]
python = ">=3.9,<3.14"
[tool.poetry.group.docs.dependencies]
shibuya = "^2024.6.23"
myst-parser = "^3.0.1"
sphinx = "^7.3.7"
[tool.poetry.group.test.dependencies]
colorthief = "^0.2.1"
fast-colorthief = "^0.0.5"
pytest = "^8.2.1"
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "src/python"
[tool.poetry]
name = "modern_colorthief"
authors = ["baseplate-admin <[email protected]>"]
readme = "README.md"
package-mode = false