PyBitmessage/src/build_osx.py

21 lines
482 B
Python
Raw Normal View History

import os
2013-07-30 00:24:04 +00:00
from setuptools import setup
2013-06-15 19:09:15 +00:00
name = "Bitmessage"
version = os.getenv("PYBITMESSAGEVERSION", "custom")
2013-07-30 00:24:04 +00:00
mainscript = ["bitmessagemain.py"]
2013-06-15 19:09:15 +00:00
setup(
2014-08-27 07:14:32 +00:00
name = name,
version = version,
app = mainscript,
setup_requires = ["py2app"],
options = dict(
py2app = dict(
resources = ["images", "translations", "bitmsghash", "sslkeys"],
2014-08-27 07:14:32 +00:00
includes = ['sip', 'PyQt4._qt'],
iconfile = "images/bitmessage.icns"
)
)
2013-06-15 19:09:15 +00:00
)