-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (81 loc) · 1.7 KB
/
Copy pathpyproject.toml
File metadata and controls
94 lines (81 loc) · 1.7 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[build-system]
requires = ["scikit-build-core ~= 0.12.2", "cffi >= 1.0.3;implementation_name == 'cpython'"]
build-backend = "scikit_build_core.build"
[project]
name = "pyvex"
description = "A Python interface to libVEX and VEX IR"
license = "BSD-2-Clause AND GPL-2.0-only"
license-files = [
"LICENSE",
"pyvex_c/LICENSE",
"vex/LICENSE.README",
"vex/LICENSE.GPL",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
requires-python = ">=3.12"
dependencies = [
"bitstring",
"cffi>=1.0.3;implementation_name == 'cpython'",
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://api.angr.io/projects/pyvex/en/latest/"
Repository = "https://github.com/angr/pyvex"
[project.optional-dependencies]
fuzzing = [
"atheris>=2.3.0",
]
[dependency-groups]
dev = [
"pytest>=8.4.1",
]
docs = [
"furo",
"myst-parser",
"sphinx",
"sphinx-autodoc-typehints",
]
[tool.scikit-build]
build-dir = "scikit_build"
[tool.scikit-build.sdist]
include = [
"pyvex/py.typed",
"pyvex/include/*",
]
exclude = [
"tests*"
]
[tool.scikit-build.wheel]
py-api = "cp312"
[tool.scikit-build.metadata.version]
provider = "scikit_build_core.metadata.regex"
input = "pyvex/__init__.py"
[tool.cibuildwheel.pyodide]
build = "cp314-*"
test-groups = ["dev"]
test-command = "pytest {project}/tests"
[tool.black]
line-length = 120
force-exclude = '''
/(
vex
)/
'''
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
"E",
"F",
"I",
"TID",
]