Skip to content

Commit

Permalink
Create setup-osx.py
Browse files Browse the repository at this point in the history
  • Loading branch information
blitzmann committed Nov 27, 2015
1 parent 4d701f5 commit f053e45
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions setup-osx.py
Original file line number Diff line number Diff line change
@@ -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'],
)

0 comments on commit f053e45

Please sign in to comment.