-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 954 Bytes
/
pyproject.toml
File metadata and controls
40 lines (33 loc) · 954 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
33
34
35
36
37
38
39
40
[project]
requires-python = ">=3.9"
readme = "README.md"
name = "resvg_py"
dynamic = ["version"]
authors = [
{ name = "baseplate-admin", email = "61817579+baseplate-admin@users.noreply.github.com" },
]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[tool.uv]
default-groups = "all"
[dependency-groups]
build = ["maturin>=1.10.2"]
docs = [
"sphinx>=7.2.6",
"sphinx-reload>=0.2.0",
"myst-parser>=3.0.1",
"shibuya>=2025.10.21",
]
test = ["pytest>=8.1.1", "pyperclip>=1.11.0"]
[project.urls]
"Source Code" = "https://github.com/baseplate-admin/resvg-py"
Issues = "https://github.com/baseplate-admin/resvg-py/issues"
Documentation = "https://resvg-py.readthedocs.io/"
[build-system]
requires = ["maturin>=1.4,<2.0"]
build-backend = "maturin"
[tool.maturin]
features = ["pyo3/extension-module"]