-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 698 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 698 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
from setuptools import setup, find_packages
import os
cwd = os.path.abspath(os.path.dirname(__file__))
setup(
name='objtree',
version='0.5.2',
description="tree but for Objective-C messages",
author='hot3eed',
author_email='hot3eed@gmail.com',
url='https://github.com/hot3eed/objtree',
install_requires=[
'frida-tools >= 9.0.0, < 10.0.0',
],
license='Apache License 2.0',
keywords='dynamic-instrumentation ios macos frida debugger',
packages=find_packages(),
package_data={
'objtree': [os.path.join(cwd, './_agent.js')]
},
entry_points={
'console_scripts': [
'objtree=objtree.cli:main'
]
}
)