-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.18 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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "libbs"
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.12",
]
license = {text = "BSD 2 Clause"}
description = "Your Only Decompiler API Lib - A generic API to script in and out of decompilers"
urls = {Homepage = "https://github.com/binsync/libbs"}
requires-python = ">= 3.10"
dependencies = [
"toml",
"ply",
"pycparser<3.0",
"setuptools",
"prompt_toolkit",
"tqdm",
"psutil",
"pyghidra",
"platformdirs",
"filelock",
"networkx"
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.optional-dependencies]
test = [
"pytest",
"angr",
"requests",
"ipdb"
]
ghidra = [
"PySide6-Essentials>=6.4.2,!=6.7.0"
]
[project.scripts]
libbs = "libbs.__main__:main"
[tool.setuptools]
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.packages]
find = {namespaces = false}
[tool.setuptools.dynamic]
version = {attr = "libbs.__version__"}