django-allauth-cas/setup.py

62 lines
1.9 KiB
Python
Raw Normal View History

2017-07-22 18:29:14 +02:00
import os
from setuptools import find_packages, setup
from allauth_cas import __version__
BASE_DIR = os.path.dirname(__file__)
with open(os.path.join(BASE_DIR, "README.rst")) as readme:
2017-07-22 18:29:14 +02:00
README = readme.read()
setup(
name="django-allauth-cas",
2017-07-22 18:29:14 +02:00
version=__version__,
description="CAS support for django-allauth.",
author="Aurélien Delobelle",
author_email="aurelien.delobelle@gmail.com",
keywords="django allauth cas authentication",
2017-07-22 18:29:14 +02:00
long_description=README,
url="https://github.com/aureplop/django-allauth-cas",
2017-07-22 18:29:14 +02:00
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 1.8",
"Framework :: Django :: 1.9",
"Framework :: Django :: 1.10",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.0",
"Framework :: Django :: 3.0",
"Framework :: Django :: 4.0",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.11",
"Topic :: Internet :: WWW/HTTP",
2017-07-22 18:29:14 +02:00
],
license="MIT",
packages=find_packages(exclude=["tests"]),
2017-07-22 18:29:14 +02:00
include_package_data=True,
install_requires=[
"django-allauth",
"python-cas",
"six",
2017-07-22 18:29:14 +02:00
],
extras_require={
"docs": ["sphinx"],
"tests": ["tox"],
2017-07-22 18:29:14 +02:00
},
)