--- setup.py.orig 2008-08-18 14:53:12.000000000 +1000 +++ setup.py 2009-07-11 02:02:09.000000000 +1000 @@ -216,7 +216,7 @@ @raise Exception: If script cannot be created on disk. """ try: - checker_path = os.path.join(package_path, "checker.py") + checker_path = os.path.join("PYTHONLIB/pychecker", "checker.py") if sys.platform == "win32": script_str = "%s %s %%*\n" % (sys.executable, checker_path) else: @@ -258,7 +258,7 @@ 'author' : "Neal Norwitz", 'author_email' : "nnorwitz@gmail.com", 'url' : "http://pychecker.sourceforge.net/", - 'packages' : [ 'pychecker', ], + 'packages' : [ 'pychecker', 'pychecker2', ], 'scripts' : [ "pychecker" ], # note: will be replaced by customized action 'data_files' : [ ( "pychecker", DATA_FILES, ) ], 'long_description' : LONG_DESCRIPTION,