X-Git-Url: https://git.mdrn.pl/django-cas-provider.git/blobdiff_plain/3577d19daa7b0fe291af2a92908d5c53cb092189..b86edc315aac724929168b38bdfde65dfd63b6f6:/setup.py diff --git a/setup.py b/setup.py index 489f8d2..0094b19 100644 --- a/setup.py +++ b/setup.py @@ -1,14 +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', + version='0.3.0', 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", + ] )