aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorThibaut Horel <thibaut.horel@gmail.com>2014-07-28 14:24:04 +0200
committerThibaut Horel <thibaut.horel@gmail.com>2014-07-28 14:24:04 +0200
commit2705e945ac0f113fda2deabe7af7265537e04b5c (patch)
tree385c0ee5ce42a190fd76648f441f4a566da6a5fe /setup.py
parent7172eeb31c51fcfcc7e1f0a157758b7d741ca78d (diff)
downloadpython-pushover-2705e945ac0f113fda2deabe7af7265537e04b5c.tar.gz
Fix #3 add console script entry point
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index cb3fd53..2ea6e89 100644
--- a/setup.py
+++ b/setup.py
@@ -10,6 +10,7 @@ setup(name='python-pushover',
author='Thibaut Horel',
author_email='thibaut+pushover@gmail.com',
py_modules=['pushover'],
+ entry_points={"console_scripts": ["pushover = pushover:main"]},
install_requires=['requests'],
license='GNU GPLv3'
)