-
Notifications
You must be signed in to change notification settings - Fork 970
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
57 lines (51 loc) · 1.43 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
[build-system]
requires = ["setuptools>=70.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "objection"
version = "1.12.4"
description = "Instrumented Mobile Pentest Framework"
readme = "README.md"
requires-python = ">=3.10"
license = "GPL-3.0-or-later"
authors = [{name = "Leon Jacobs", email = "leon@sensepost.com"}]
keywords = ["mobile", "instrumentation", "pentest", "frida", "hook"]
classifiers = [
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: JavaScript",
]
dependencies = [
"click>=8.2.0",
"delegator-py>=0.1.1",
"flask>=3.0.0",
"frida>=16.0.0",
"frida-tools>=10.0.0",
"litecli>=1.3.0",
"packaging>=23.0",
"prompt-toolkit>=3.0.30,<4.0.0",
"pygments>=2.0.0",
"requests>=2.32.0",
"semver>=2",
"setuptools>=70.0.0",
"tabulate>=0.9.0",
]
[project.urls]
Homepage = "https://github.com/sensepost/objection"
Repository = "https://github.com/sensepost/objection"
"Bug Tracker" = "https://github.com/sensepost/objection/issues"
[project.scripts]
objection = "objection.console.cli:cli"
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.packages.find]
include = ["objection", "objection.*"]
[tool.setuptools.package-data]
objection = [
"console/helpfiles/*.txt",
"utils/assets/*.jks",
"utils/assets/*.js",
"utils/assets/*.xml",
"agent.js",
]