mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-08 08:30:59 +00:00
Silence warning about 'app' being an unknown distribution option.
This commit is contained in:
parent
1f9cd2f67f
commit
56b46d7e59
1 changed files with 5 additions and 2 deletions
7
setup.py
7
setup.py
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue