forked from django-auth-ldap/django-auth-ldap
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
51 lines (47 loc) · 1.87 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
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
from setuptools import setup
import django_auth_ldap
with open("README.rst") as fp:
readme = fp.read()
setup(
name="django-auth-ldap",
version=django_auth_ldap.version_string,
description="Django LDAP authentication backend",
long_description=readme,
url="https://github.com/django-auth-ldap/django-auth-ldap",
author="Peter Sagerson",
author_email="[email protected]",
maintainer="Jon Dufresne",
maintainer_email="[email protected]",
license="BSD",
packages=["django_auth_ldap"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP",
],
keywords=["django", "ldap", "authentication", "auth"],
project_urls={
"Documentation": "https://django-auth-ldap.readthedocs.io/",
"Source": "https://github.com/django-auth-ldap/django-auth-ldap",
"Tracker": "https://github.com/django-auth-ldap/django-auth-ldap/issues",
},
python_requires=">=3.5",
install_requires=["Django >= 1.11", "python-ldap >= 3.1"],
tests_require=["mock >= 2.0.0"],
)