-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (46 loc) · 1.04 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
51
52
[project]
name = "vagd"
version = "1.5.5"
authors = [{ name = "0x6fe1be2" }]
description = "VirtuAlization GDb integrations in pwntools"
readme = "README.md"
requires-python = ">=3.7"
dependencies = ['pwntools', 'docker', 'typer', 'rich']
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
]
keywords = [
'vagd',
'pwn',
'pwntools',
'exploit',
'ctf',
'capture',
'the',
'flag',
'binary',
'vagrant',
'qemu',
'docker',
]
[project.scripts]
vagd = "vagd:cli.start"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"vagd.res" = [
"template.txt",
"seccomp.json",
"local_template.txt",
"aliases.txt",
]
"vagd.gdb" = ["*.pyi"]
[project.urls]
"Homepage" = "https://github.com/gfelber/vagd"
"Documentation" = "https://gfelber.github.io/vagd/"
"Bug Tracker" = "https://github.com/gfelber/vagd/issues"