-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.23 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
[project]
name = "pypcode"
description = "Machine code disassembly and IR translation library"
license = { file = "LICENSE.txt" }
readme = { file = "README.md", content-type = "text/markdown" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.10"
dynamic = [ "version" ]
[project.urls]
Homepage = "https://api.angr.io/projects/pypcode/en/latest/"
Repository = "https://github.com/angr/pypcode"
[project.optional-dependencies]
docs = [
"furo",
"ipython",
"myst-parser",
"sphinx",
"sphinx-autodoc-typehints",
]
[build-system]
requires = [ "setuptools", "nanobind", "cmake" ]
build-backend = "setuptools.build_meta"
[tool.setuptools]
dynamic = { version = { attr = "pypcode.__version__.__version__" } }
packages = [ "pypcode" ]
ext-modules = [
{ name = "pypcode.pypcode_native", sources = [] }
]
[tool.black]
line-length = 120
target-version = ['py38']
[tool.ruff]
line-length = 120
extend-ignore = [
"E402", # Bottom imports
]