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