2016-03-02 08:00:45 +01:00
|
|
|
import os
|
|
|
|
from setuptools import setup
|
|
|
|
|
2016-03-03 06:16:51 +01:00
|
|
|
APP = [os.path.join('lbrynet', 'lbrynet_daemon', 'Apps', 'LBRYOSXStatusBar.py')]
|
2016-03-02 08:00:45 +01:00
|
|
|
DATA_FILES = []
|
|
|
|
OPTIONS = {
|
|
|
|
'argv_emulation': True,
|
|
|
|
'iconfile': 'app.icns',
|
|
|
|
'plist': {
|
|
|
|
'LSUIElement': True,
|
|
|
|
},
|
|
|
|
'includes': ['rumps']
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='LBRY',
|
|
|
|
app=APP,
|
|
|
|
data_files=DATA_FILES,
|
|
|
|
options={'py2app': OPTIONS},
|
|
|
|
setup_requires=['py2app'],
|
|
|
|
)
|