You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
355 B
Python
20 lines
355 B
Python
from setuptools import setup
|
|
|
|
name = "Bitmessage"
|
|
version = "0.4.2"
|
|
mainscript = ["bitmessagemain.py"]
|
|
|
|
setup(
|
|
name = name,
|
|
version = version,
|
|
app = mainscript,
|
|
setup_requires = ["py2app"],
|
|
options = dict(
|
|
py2app = dict(
|
|
resources = ["images", "translations"],
|
|
includes = ['sip', 'PyQt4._qt'],
|
|
iconfile = "images/bitmessage.icns"
|
|
)
|
|
)
|
|
)
|