mirror of
https://github.com/frida/frida-python
synced 2026-06-08 14:16:17 +00:00
26 lines
544 B
Python
26 lines
544 B
Python
"""
|
|
This is a setup.py script generated by py2applet
|
|
|
|
Usage:
|
|
python setup.py py2app
|
|
"""
|
|
|
|
from setuptools import setup
|
|
import py2app
|
|
|
|
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'],
|
|
)
|