-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (54 loc) · 1.87 KB
/
pyproject.toml
File metadata and controls
66 lines (54 loc) · 1.87 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = ["zigcc-build>=0.2.3"]
build-backend = "zigcc_build"
[project]
name = "quickjs-runtime"
version = "0.2.5"
description = "Python bindings for QuickJS"
readme = "README.md"
requires-python = ">=3.12, <3.15"
license = {text = "MIT"}
dependencies = []
authors = [
{name = "Julien Rialland", email = "julien.rialland@gmail.com"}
]
maintainers = [
{name = "Julien Rialland", email = "julien.rialland@gmail.com"}
]
keywords = ["quickjs", "javascript", "js", "runtime", "bindings", "interpreter"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: JavaScript",
"Topic :: Software Development :: Interpreters",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/jrialland/python-quickjs-runtime"
Repository = "https://github.com/jrialland/python-quickjs-runtime"
Issues = "https://github.com/jrialland/python-quickjs-runtime/issues"
Documentation = "https://github.com/jrialland/python-quickjs-runtime#readme"
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.zigcc-build]
configurer-script = "configure.py"
[tool.cibuildwheel]
# Build for Python 3.12, 3.13, 3.14
build = ["cp312-*", "cp313-*", "cp314-*"]
# Skip 32-bit builds and musl variants
skip = ["*-win32", "*-manylinux_i686", "*-musllinux_*"]
# Test the wheels after building
test-requires = ["pytest"]
test-command = "pytest {project}/tests"
# Platform-specific settings
[tool.cibuildwheel.macos]
archs = ["x86_64", "arm64"] # Intel and Apple Silicon
[tool.cibuildwheel.linux]
archs = ["x86_64"]
[tool.cibuildwheel.windows]
archs = ["AMD64"]