-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 854 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 854 Bytes
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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ghost"
version = "8.0.0"
description = "Ghost Framework is an Android post-exploitation framework that exploits the Android Debug Bridge to remotely access an Android device."
readme = "README.md"
requires-python = ">=3.7.0"
license = { file = "LICENSE" }
authors = [
{ name = "EntySec", email = "entysec@gmail.com" }
]
urls = { Homepage = "https://github.com/EntySec/Ghost" }
dependencies = [
"adb-shell",
"pex @ git+https://github.com/EntySec/Pex",
"badges @ git+https://github.com/EntySec/Badges",
"colorscript @ git+https://github.com/EntySec/ColorScript",
]
[project.scripts]
ghost = "ghost.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["*"]
exclude = []
[tool.setuptools]
include-package-data = true