Include management commands
This commit is contained in:
parent
eef9490885
commit
16b700d012
1 changed files with 2 additions and 3 deletions
5
setup.py
5
setup.py
|
@ -9,8 +9,8 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='django-cas-server',
|
name='django-cas-server',
|
||||||
version='0.3.2',
|
version='0.3.3',
|
||||||
packages=['cas_server'],
|
packages=['cas_server', 'cas_server.migrations', 'cas_server.management', 'cas_server.management.commands'],
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
license='GPLv3',
|
license='GPLv3',
|
||||||
description='A Django app implementing the CAS Protocol 3.0 Specification',
|
description='A Django app implementing the CAS Protocol 3.0 Specification',
|
||||||
|
@ -34,7 +34,6 @@ setup(
|
||||||
'templates/cas_server/*',
|
'templates/cas_server/*',
|
||||||
'static/cas_server/*',
|
'static/cas_server/*',
|
||||||
'locale/*/LC_MESSAGES/*',
|
'locale/*/LC_MESSAGES/*',
|
||||||
'migrations/*.py',
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
keywords=['django', 'cas', 'cas3', 'server', 'sso', 'single sign-on', 'authentication', 'auth'],
|
keywords=['django', 'cas', 'cas3', 'server', 'sso', 'single sign-on', 'authentication', 'auth'],
|
||||||
|
|
Loading…
Reference in a new issue