默认 lsd Non-fatal error enumerating at <private>, continuing: Error Domain=NSCocoaErrorDomain Code=260 "未能打开文件“PlugIns”,因为它不存在。" UserInfo={NSURL=PlugIns/ -- file:///Users/xxxxx/xxxxx.app/Contents/, ...., NSUnderlyingError=0x7f973044b690 {Error Domain=NSPOSIXErrorDomain Code=2 "No such file or directory"}}
默认 loginwindow -[PersistentAppsSupport applicationReady:] | App: BatchInstaller, ready, updating active tracking timer
默认 oginwindow -[ApplicationManager checkInAppContext:refCon:eventData:] | checked in app : .....
默认 distnoted register name: com.apple.sharedfilelist.change object: com.apple.LSSharedFileList.ApplicationRecentDocuments/org.pythonmac.unspecified.batch
Py2app官网:https://py2app.readthedocs.io/en/latest/tutorial.html#clean-up-your-build-directories
"""
This is a setup.py script generated by py2applet
Usage:
python setup.py py2app
"""
from setuptools import setup
APP = ['Main.py']
DATA_FILES = ['Install.py','Device.py']
OPTIONS = {'argv_emulation': True,'iconfile':'BtiFj.ico'}
setup(
app=['Mian.py'],
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
)