1db7635893
- include bitmsghash so that it bundles the C library PoW - include sslkeys so that SSL works in the bundle - PyBitmessage version now propagated from the shell build script
21 lines
482 B
Python
21 lines
482 B
Python
import os
|
|
from setuptools import setup
|
|
|
|
name = "Bitmessage"
|
|
version = os.getenv("PYBITMESSAGEVERSION", "custom")
|
|
mainscript = ["bitmessagemain.py"]
|
|
|
|
setup(
|
|
name = name,
|
|
version = version,
|
|
app = mainscript,
|
|
setup_requires = ["py2app"],
|
|
options = dict(
|
|
py2app = dict(
|
|
resources = ["images", "translations", "bitmsghash", "sslkeys"],
|
|
includes = ['sip', 'PyQt4._qt'],
|
|
iconfile = "images/bitmessage.icns"
|
|
)
|
|
)
|
|
)
|