forked from castlabs/django-cas-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 842 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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.3.3',
description='A "provider" for the Central Authentication Service (http://jasig.org/cas)',
author='MIT Open Learning',
author_email='[email protected]',
url='https://github.com/mitocw/django-cas-provider',
packages=find_packages(),
include_package_data=True,
license='MIT',
long_description=read('README.rst'),
zip_safe=False,
install_requires=['setuptools'],
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Django :: 2.2",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
],
python_requires='>=3.8'
)