From 1d68a84117e7842dd85ae56ffd4703fc661eb051 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Mon, 10 Mar 2014 14:41:30 +0100 Subject: [PATCH] setup.py: add a console_scripts entrypoint pointing to the LTPA utilities --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9d37a28..315bc81 100755 --- a/setup.py +++ b/setup.py @@ -14,7 +14,10 @@ setup(name='authentic2-idp-ltpa', ], entry_points={ 'authentic2.plugin': [ - 'authentic-idp-ltpa = authentic2_idp_ltpa:Plugin', + 'authentic2-idp-ltpa = authentic2_idp_ltpa:Plugin', + ], + 'console_scripts': [ + 'ltpa-token=authentic2_idp_ltpa.utils:main', ], }, )