forked from xrg/django-cas2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·40 lines (37 loc) · 1.39 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
from setuptools import setup
setup(
author='KTH Infosys',
author_email='itsc@kth.se',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Framework :: Django',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
],
description='CAS 2.0 authentication backend for Django',
download_url='https://github.com/fjollberg/django-cas2',
keywords='django cas cas2 authentication middleware backend',
license='MIT',
long_description="""
``django_cas`` is a `CAS` 2.0 authentication backend for
`Django`_. It allows you to use Django's built-in authentication mechanisms
and ``User`` model while adding support for CAS.
It also includes a middleware that intercepts calls to the original login and
logout pages and forwards them to the CASified versions, and adds CAS support
to the admin interface.
.. _CAS: http://www.ja-sig.org/products/cas/
.. _Django: http://www.djangoproject.com/
""",
name='django_cas',
packages=['django_cas',
'django_cas/management',
'django_cas/management/commands'],
url='https://github.com/fjollberg/django-cas2',
version='KTH-2.0.3',
install_requires=['requests'],
)