Support Django 4.1, drop 1.11.
[django-cas-provider.git] / setup.py
1 import os
2 from setuptools import setup, find_packages
3
4 def read(fname):
5     return open(os.path.join(os.path.dirname(__file__), fname)).read()
6
7 setup(
8     name='django-cas-provider',
9     version='23.3',
10     description='A "provider" for the Central Authentication Service (http://jasig.org/cas)',
11     author='(Chris Williams), Sebastian Annies',
12     author_email='(chris@nitron.org), sebastian.annies@googlemail.com',
13     url='https://github.com/castlabs/django-cas-provider',
14     packages=find_packages(exclude=['cas_provider_examples']),
15     include_package_data=True,
16     license='MIT',
17     long_description=read('README.rst'),
18     zip_safe=False,
19     install_requires=[
20         'Django>=2.0,<4.2',
21         'lxml',
22         ],
23     classifiers = [
24         "Development Status :: 3 - Alpha",
25         "Framework :: Django",
26         "License :: OSI Approved :: MIT License",
27     ]
28 )