-
Notifications
You must be signed in to change notification settings - Fork 51
/
setup.py
32 lines (26 loc) · 802 Bytes
/
setup.py
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
from setuptools import setup, find_packages
import os
from xpcspy.__init__ import __version__
cwd = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(cwd, 'requirements.txt'), 'r') as f:
requirements = f.readlines()
setup(
name='xpcspy',
description="XPC message interception and more",
license='Apache-2.0',
author='hot3eed',
author_email='[email protected]',
url='https://github.com/hot3eed/xpcspy',
keywords=['macos', 'ios', 'xnu', 'xpc', 'frida'],
version=__version__,
packages=find_packages(),
install_requires=requirements,
package_data={
'xpcspy': [os.path.join(cwd, './_agent.js')]
},
entry_points={
'console_scripts': [
'xpcspy=xpcspy.console.cli:main'
]
}
)