diff options
| -rw-r--r-- | setup.py | 7 | 
1 files changed, 6 insertions, 1 deletions
| @@ -35,7 +35,12 @@ setup(      packages=find_packages(),      include_package_data=True, -    scripts = ["pathod", "pathoc"], +    entry_points={ +        'console_scripts': [ +            "pathod = libpathod.cmdline:go_pathod", +            "pathoc = libpathod.cmdline:go_pathoc" +        ] +    },      install_requires=[          "netlib>=%s, <%s" % (version.MINORVERSION, version.NEXT_MINORVERSION),          # It's INSANE that we have to do this, but... | 
