forked from sensepost/objection
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (41 loc) · 1.14 KB
/
Copy pathsetup.py
File metadata and controls
43 lines (41 loc) · 1.14 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
from setuptools import setup
from objection.__init__ import __version__
setup(
name='objection',
description='Instrumented Mobile Pentest Framework',
author='Leon Jacobs',
author_email='leon@sensepost.com',
url='https://github.com/sensepost/objection',
download_url='https://github.com/objection/tarball/' + __version__,
keywords=['mobile', 'instrumentation', 'pentest', 'frida', 'hook'],
version=__version__,
python_requires='>=3.3',
packages=[
'objection',
'objection.commands',
'objection.commands.ios',
'objection.console',
'objection.utils',
],
include_package_data=True,
install_requires=[
'frida',
'prompt_toolkit',
'click',
'jinja2',
'tabulate',
'delegator.py',
'requests',
],
classifiers=[
'Operating System :: OS Independent',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: JavaScript',
],
entry_points={
'console_scripts': [
'objection=objection.console.cli:cli',
],
},
)