This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
authentic2-idp-cas/setup.py

21 lines
561 B
Python
Executable File

#!/usr/bin/python
from setuptools import setup, find_packages
import os
setup(name='authentic2-idp-cas',
version='1.0',
license='AGPLv3',
description='Authentic2 IdP CAS',
author="Entr'ouvert",
author_email="info@entrouvert.com",
packages=find_packages(os.path.dirname(__file__) or '.'),
install_requires=[
'djangorestframework',
],
entry_points={
'authentic2.plugin': [
'authentic-idp-cas = authentic2_idp_cas:Plugin',
],
},
)