-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (78 loc) · 1.97 KB
/
pyproject.toml
File metadata and controls
90 lines (78 loc) · 1.97 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
[build-system]
requires = ["setuptools>=77.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cle"
description = "CLE Loads Everything (at least, many binary formats!) and provides a pythonic interface to analyze what they are and what they would look like in memory."
license = "BSD-2-Clause"
license-files = ["LICENSE"]
classifiers = [
"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",
"Programming Language :: Python :: 3.14",
]
dynamic = ["version"]
requires-python = ">=3.10"
dependencies = [
"archinfo==9.2.212.dev0",
"arpy==1.1.1",
"cart",
"minidump>=0.0.10",
"pefile==2024.8.26",
"pyelftools>=0.29",
"pyvex==9.2.212.dev0",
"pyxbe~=1.0.3",
"pyxdia~=0.1",
"sortedcontainers>=2.0",
"uefi-firmware>=1.10",
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://api.angr.io/projects/cle/en/latest/"
Repository = "https://github.com/angr/cle"
[project.optional-dependencies]
docs = [
"furo",
"myst-parser",
"sphinx",
"sphinx-autodoc-typehints",
]
pcode = [
"pypcode>=1.1"
]
testing = [
"cffi",
"pypcode>=1.1",
"pytest",
"pytest-xdist",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = { attr = "cle.__version__" }
[tool.setuptools.package-data]
cle = ["py.typed"]
[tool.uv.sources]
archinfo = { git = "https://github.com/angr/archinfo.git", branch = "master" }
pyvex = { git = "https://github.com/angr/pyvex.git", branch = "master" }
[tool.black]
line-length = 120
target-version = ['py310']
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
"E",
"F",
"I",
"TID",
"UP",
]
[tool.ruff.lint.isort]
required-imports = ["from __future__ import annotations"]