mirror of
https://github.com/frida/frida-python
synced 2026-06-08 14:16:17 +00:00
25 lines
531 B
Python
25 lines
531 B
Python
"""
|
|
This is a setup.py script generated by py2applet
|
|
|
|
Usage:
|
|
python setup.py py2app
|
|
"""
|
|
|
|
from setuptools import setup
|
|
|
|
plist = dict(
|
|
CFBundleShortVersionString="CpuShark v1",
|
|
CFBundleIconFile="CpuShark.icns",
|
|
CFBundleGetInfoString="CpuShark v1",
|
|
CFBundleIdentifier="com.tillitech.CpuShark",
|
|
CFBundleDocumentTypes=[],
|
|
CFBundleName="CpuShark",
|
|
)
|
|
|
|
setup(
|
|
app=["CpuShark.py"],
|
|
data_files=["MainMenu.xib", "MainWindow.xib"],
|
|
options={"py2app": {"plist": plist}},
|
|
setup_requires=["py2app"],
|
|
)
|