Use py2exe

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3879 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2009-01-07 19:23:26 +00:00
parent 0fca2d85fd
commit e1b1a63ea2

View file

@ -68,6 +68,8 @@ win_compiling = (os.name == 'nt') or (cc is not None and "mingw32" in cc)
# releases supporting our special .bat files
win_bat_releases = ['NT', 'XP', '2000', '2003Server']
if os.name == 'nt':
import py2exe
def normpath (path):
"""Norm a path name to platform specific notation."""
@ -582,4 +584,5 @@ o a (Fast)CGI web interface (requires HTTP server)
'Programming Language :: Python',
'Programming Language :: C',
],
console = [{"script": "linkchecker"}],
)