-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsetup.py
23 lines (22 loc) · 870 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
from setuptools import setup
setup(
name='django-auth-ldap3-ad',
version='1.6.33',
packages=['django_auth_ldap3_ad'],
url='https://github.com/Lucterios2/django_auth_ldap3_ad',
license='GPL V3',
author='Pierre-Olivier VERSCHOORE',
author_email='[email protected]',
description='very simple authentication module for python3 / django / LDAP or AD',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django :: 1.11',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
install_requires=["Django>=1.11", "ldap3>=0.9.8", "six"],
)