aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--setup.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index cb2b7798..adad576a 100644
--- a/setup.py
+++ b/setup.py
@@ -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...