From e2ea8bfd0ad4c3b6b001d99076b79019d605ad8d Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Mon, 10 Mar 2014 15:35:20 +0100 Subject: [PATCH] setup.py: remove unneeded dependency, fix entrypoint name --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index c86fe34..71b60cc 100755 --- a/setup.py +++ b/setup.py @@ -10,11 +10,10 @@ setup(name='authentic2-idp-cas', author_email="info@entrouvert.com", packages=find_packages(os.path.dirname(__file__) or '.'), install_requires=[ - 'djangorestframework', ], entry_points={ 'authentic2.plugin': [ - 'authentic-idp-cas = authentic2_idp_cas:Plugin', + 'authentic2-idp-cas = authentic2_idp_cas:Plugin', ], }, )