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-ltpa/setup.py

24 lines
661 B
Python
Executable File

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