diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -79,7 +79,12 @@ setup( url="http://pathod.net", packages=packages, package_data=package_data, - scripts=["pathod", "pathoc"], + entry_points={ + 'console_scripts': [ + "pathod = libpathod.main:pathod", + "pathoc = libpathod.main:pathoc" + ] + }, classifiers=[ "License :: OSI Approved :: MIT License", "Development Status :: 5 - Production/Stable", |