-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
38 lines (32 loc) · 1.28 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
"""
(c) All rights reserved. ECOLE POLYTECHNIQUE FEDERALE DE LAUSANNE, Switzerland, VPSI, 2017
"""
from setuptools import setup
from io import open
setup(
name='django-tequila',
version=__import__('django_tequila').__version__,
author='Julien Delasoie',
author_email='[email protected]',
keywords='django, tequila, authentication',
url='https://github.com/epfl-idevelop/django-tequila',
license="LGPLv3",
description='A Tequila authentication backend for django',
long_description=open('README.rst', 'r', encoding="utf-8").read(),
long_description_content_type="text/x-rst",
packages=['django_tequila',
'django_tequila.django_backend',
'django_tequila.tequila_client',
'django_tequila.tequila_auth_views'],
classifiers=[
'Programming Language :: Python',
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: OS Independent',
'Framework :: Django',
'Topic :: Internet :: WWW/HTTP',
'Topic :: System :: Systems Administration :: Authentication/Directory',
]
)