forked from gthb/django-cas-provider
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
26 lines (24 loc) · 847 Bytes
/
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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-cas-provider',
version='0.3.2',
description='A "provider" for the Central Authentication Service (http://jasig.org/cas)',
author='(Chris Williams), Sebastian Annies',
author_email='(chris@nitron.org), sebastian.annies@googlemail.com',
url='https://github.com/castlabs/django-cas-provider',
packages=find_packages(),
include_package_data=True,
license='MIT',
long_description=read('README.rst'),
zip_safe=False,
install_requires=['setuptools',
'south>=0.7.2',],
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Django",
"License :: OSI Approved :: MIT License",
]
)