forked from LBRYCommunity/lbry-sdk
25 lines
No EOL
670 B
Python
25 lines
No EOL
670 B
Python
from setuptools import setup
|
|
import os
|
|
|
|
APP = [os.path.join('lbrynet', 'lbrynet_daemon', 'Apps', 'LBRYURIHandler.py')]
|
|
DATA_FILES = []
|
|
OPTIONS = {'argv_emulation': True,
|
|
'packages': ['jsonrpc'],
|
|
'plist': {
|
|
'LSUIElement': True,
|
|
'CFBundleIdentifier': 'io.lbry.LBRYURIHandler',
|
|
'CFBundleURLTypes': [
|
|
{
|
|
'CFBundleURLTypes': 'LBRYURIHandler',
|
|
'CFBundleURLSchemes': ['lbry']
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
setup(
|
|
app=APP,
|
|
data_files=DATA_FILES,
|
|
options={'py2app': OPTIONS},
|
|
setup_requires=['py2app'],
|
|
) |