Create setup-osx.py
This commit is contained in:
22
setup-osx.py
Normal file
22
setup-osx.py
Normal file
@@ -0,0 +1,22 @@
|
||||
"""
|
||||
This is a setup.py script generated by py2applet
|
||||
Usage:
|
||||
python setup.py py2app
|
||||
"""
|
||||
|
||||
from setuptools import setup
|
||||
import requests.certs
|
||||
APP = ['pyfa.py']
|
||||
DATA_FILES = ['eve.db', 'README.md', 'LICENSE', 'imgs', requests.certs.where()]
|
||||
OPTIONS = {
|
||||
'argv_emulation': True,
|
||||
'iconfile': 'dist_assets/mac/pyfa.icns',
|
||||
'packages': ['eos', 'gui', 'service', 'utils']
|
||||
}
|
||||
|
||||
setup(
|
||||
app=APP,
|
||||
data_files=DATA_FILES,
|
||||
options={'py2app': OPTIONS},
|
||||
setup_requires=['py2app'],
|
||||
)
|
||||
Reference in New Issue
Block a user