from setuptools import setup, find_packages
-
+
+
setup(
name='django-cas-provider',
- version='0.2',
+ version='0.2.2',
description='A "provider" for the Central Authentication Service (http://jasig.org/cas)',
author='Chris Williams',
author_email='chris@nitron.org',
include_package_data=True,
zip_safe=False,
install_requires=['setuptools'],
+ classifiers = [
+ "Development Status :: 3 - Alpha",
+ "Framework :: Django",
+ "License :: OSI Approved :: MIT License",
+ ]
)