setup: the mac-exe build (using py2app) requires macholib>=1.2.

Here is someone else's description of this problem:
http://rtmpy.org/ticket/7
This commit is contained in:
Zooko O'Whielacronx 2009-07-03 10:57:02 -07:00
parent d79b2a02b4
commit 7bf452e4bc

View File

@ -45,7 +45,7 @@ setup_args = {
'app': [ 'allmydata_tahoe.py' ],
'options': { 'py2app': py2app_options },
'data_files': data_files,
'setup_requires': [ 'py2app' ],
'setup_requires': [ 'py2app', 'macholib>=1.2' ],
'packages': packages,
}