-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
65 lines (59 loc) · 2.05 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["maturin ~=1.2"]
build-backend = "maturin"
[project]
name = "sphinxcontrib-svgbob"
dynamic = ["version"]
description = "A Sphinx extension to convert ASCII diagrams to SVGs with Svgbob."
readme = "README.md"
requires-python = ">=3.7"
license = { file = "COPYING" }
authors = [
{ name = "Martin Larralde", email = "[email protected]" },
]
keywords = ["sphinx", "documentation", "svg", "diagram", "ascii"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Rust",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing",
"Typing :: Typed",
]
dependencies = [
"sphinx"
]
[project.urls]
"Bug Tracker" = "https://github.com/sphinx-contrib/svgbob/issues"
"Changelog" = "https://github.com/sphinx-contrib/svgbob/blob/master/CHANGELOG.md"
"PyPI" = "https://pypi.org/project/sphinxcontrib-svgbob"
[tool.maturin]
manifest-path = "sphinxcontrib/svgbob/_svgbob/Cargo.toml"
features = ["extension-module"]
module-name = "sphinxcontrib.svgbob._svgbob"
[tool.cibuildwheel]
skip = ["*-musllinux_i686", "pp*"]
test-command = "python -m unittest sphinxcontrib.svgbob.tests -v"
before-build = "pip install maturin"
build-verbosity = 1
free-threaded-support = false
[tool.cibuildwheel.linux]
environment = { PATH="$HOME/.cargo/bin:$PATH" }
before-all = "curl -sSf https://sh.rustup.rs | sh -s -- -y"
[tool.cibuildwheel.macos]
environment = { MACOSX_DEPLOYMENT_TARGET = "10.12" }
before-all = [
"curl -sSf https://sh.rustup.rs | sh -s -- -y",
"rustup target add aarch64-apple-darwin"
]