Silence warning about 'app' being an unknown distribution option.

This commit is contained in:
Bastian Kleineidam 2011-04-27 13:35:31 +02:00
parent 1f9cd2f67f
commit 56b46d7e59

View file

@ -624,7 +624,7 @@ class MyRegister (register, object):
return data
setup (
args = dict(
name = AppName,
version = AppVersion,
description = "check websites and HTML documents for broken links",
@ -707,5 +707,8 @@ o a (Fast)CGI web interface (requires HTTP server)
"py2exe": py2exe_options,
"py2app": py2app_options,
},
app = ['linkchecker-gui'],
)
if sys.platform == 'darwin':
args["app"] = ['linkchecker-gui']
setup(**args)