forked from django-cas-ng/django-cas-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·44 lines (40 loc) · 1.61 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
41
42
43
#!/usr/bin/env python
from __future__ import absolute_import
import codecs
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with codecs.open('README.rst', encoding='utf-8') as f:
readme = f.read()
setup(
author='Ming Chen',
author_email='[email protected]',
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',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
description='CAS 1.0/2.0 client authentication backend for Django (inherited from django-cas)',
keywords=['django', 'cas', 'cas2', 'cas3', 'client', 'sso', 'single sign-on', 'authentication', 'auth'],
license='BSD',
long_description=readme,
name='django-cas-ng',
packages=['django_cas_ng', 'django_cas_ng.management', 'django_cas_ng.management.commands', 'django_cas_ng.migrations'],
package_data = {
'django_cas_ng': ['locale/*/LC_MESSAGES/*',],
},
url='https://github.com/mingchen/django-cas-ng',
#bugtrack_url='https://github.com/mingchen/django-cas-ng/issues', # not support this key
download_url ='https://github.com/mingchen/django-cas-ng/releases',
version='3.5.8',
install_requires=['python-cas>=1.2.0'],
zip_safe=False, # dot not package as egg or django will not found management commands
)