-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
55 lines (48 loc) · 1.53 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
[build-system]
requires = ["scikit-build-core >=0.4.3", "nanobind >=1.3.2"]
build-backend = "scikit_build_core.build"
[project]
name = "bochscpu-python"
version = "0.4.0"
description = "Python bindings for BochsCPU."
readme = "./README.md"
license.file = "./LICENSE"
requires-python = ">=3.8"
authors = [{ name = "hugsy", email = "hugsy@blah.cat" }]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"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",
"Topic :: System :: Emulators",
"Natural Language :: English",
]
dependencies = ["setuptools", "wheel", "nanobind"]
[project.optional-dependencies]
tests = ["pytest", "black", "capstone", "keystone-engine"]
[project.urls]
Homepage = "https://github.com/hugsy/bochscpu-python"
[tool.isort]
profile = "black"
[tool.scikit-build]
wheel.py-api = "cp312"
minimum-version = "0.4"
build-dir = "build/{wheel_tag}"
cmake.minimum-version = "3.20"
# Uncomment for debug (+ASAN)
# cmake.verbose = true
# logging.level = "DEBUG"
# cmake.build-type = "Debug"
[tool.cibuildwheel]
build = ""
skip = "cp27-* cp35-* cp36-* cp37-* pp* *musllinux*"
test-skip = ""
free-threaded-support = false
# use images from https://github.com/pypa/manylinux
archs = ["x86_64"]
manylinux-x86_64-image = "manylinux_2_28"
musllinux-x86_64-image = "musllinux_1_2"