-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
53 lines (48 loc) · 1.17 KB
/
setup.cfg
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
[metadata]
name = pypcode_emu
author = Jevin Sweval
author_email = [email protected]
description = pypcode-emu - Ghidra P-Code emulation in Python
version = attr: pypcode_emu.__version__
url = https://github.com/jevinskie/pypcode-emu
[options]
python_requires = >= 3.8
packages = find:
zip_safe = True
install_requires =
rich >= 11.2.0
attrs >= 21.4.0
typing-extensions >= 4.1.0
nativetypes >= 1.0.4
# pypcode @ git+https://github.com/jevinskie/pypcode#egg=pypcode
untangle >= 1.1.1
filebytes >= 0.10.2
icecream >= 2.1.2
ghidra-bridge >= 0.2.5
llvmlite >= 0.38.0
path >= 16.4.0
bidict >= 0.21.4
wrapt >= 1.14.0
more-itertools >= 8.12.0
colorful >= 0.5.4
xxhash >= 3.0.0
[options.extras_require]
dev =
black >= 22.1.0
isort >= 5.10.1
pytest >= 7.0.1
pytest-clarity >= 1.0.1
pytest-pycharm >= 0.7.0
pytest-randomly >= 3.11.0
pytest-cov >= 3.0.0
ipython >= 8.0.1
pre-commit >= 2.17.0
z3-solver >= 4.8.14.0
[options.entry_points]
console_scripts =
pypcode-emu = pypcode_emu.tools.pypcode_emu_tool:main
pypcode-emu-llvm = pypcode_emu.tools.pypcode_emu_llvm_tool:main
[isort]
profile = black
[build-system]
requires = ["setuptools", "wheel"]