-
Notifications
You must be signed in to change notification settings - Fork 206
/
pyproject.toml
42 lines (37 loc) · 1.03 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
version = "1.13.10"
name = "ropper"
description = "Show information about files in different file formats and find gadgets to build rop chains for different architectures."
dependencies = [
"filebytes>=0.10.0",
"capstone>=3"
]
requires-python = ">=3"
authors = [
{name = "Sascha Schirra", email = "[email protected]"},
]
maintainers = [
{name = "Sascha Schirra", email = "[email protected]"},
]
readme = "README.md"
license = {text = "BSD"}
classifiers = [
"Topic :: Security",
"Environment :: Console",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Intended Audience :: Developers",
]
[project.optional-dependencies]
ropchain = ["keystone-engine"]
[project.urls]
Homepage = "http://scoding.de/ropper/"
Repository = "https://github.com/sashs/Ropper.git"
[project.scripts]
ropper = "ropper.__main__:main"
[tool.setuptools]
packages = ["ropper"]