X-Git-Url: https://git.mdrn.pl/django-cas-provider.git/blobdiff_plain/087a24803f4e6749a5c32a88c62fcb922290635d..cea4a683f6d6ffcf4c971f94ab92e3b718bac364:/setup.py diff --git a/setup.py b/setup.py index 06e5d4a..fe96615 100644 --- a/setup.py +++ b/setup.py @@ -1,15 +1,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.2.2', + version='0.3.2', description='A "provider" for the Central Authentication Service (http://jasig.org/cas)', - author='Chris Williams', - author_email='chris@nitron.org', - url='http://nitron.org/', + 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'], + install_requires=['setuptools', + 'south>=0.7.2',], + classifiers = [ + "Development Status :: 3 - Alpha", + "Framework :: Django", + "License :: OSI Approved :: MIT License", + ] )