From 16b700d0127abe33a1eabf5d5fe890aeb5167e5a Mon Sep 17 00:00:00 2001 From: Valentin Samir Date: Sat, 12 Dec 2015 14:23:16 +0100 Subject: [PATCH] Include management commands --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index b5a87f0..04f4883 100644 --- a/setup.py +++ b/setup.py @@ -9,8 +9,8 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-cas-server', - version='0.3.2', - packages=['cas_server'], + version='0.3.3', + packages=['cas_server', 'cas_server.migrations', 'cas_server.management', 'cas_server.management.commands'], include_package_data=True, license='GPLv3', description='A Django app implementing the CAS Protocol 3.0 Specification', @@ -34,7 +34,6 @@ setup( 'templates/cas_server/*', 'static/cas_server/*', 'locale/*/LC_MESSAGES/*', - 'migrations/*.py', ] }, keywords=['django', 'cas', 'cas3', 'server', 'sso', 'single sign-on', 'authentication', 'auth'],