-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (35 loc) · 1.2 KB
/
setup.py
File metadata and controls
41 lines (35 loc) · 1.2 KB
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
from setuptools import find_packages, setup
from django_python3_ldap import __version__
version_str = ".".join(str(n) for n in __version__)
with open("README.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="django-python3-ldap",
version=version_str,
license="BSD",
description="Django LDAP user authentication backend for Python 3.",
long_description=long_description,
author="Dave Hall",
author_email="dave@etianen.com",
url="https://github.com/etianen/django-python3-ldap",
packages=find_packages(),
install_requires=[
"django>=4.2",
"asgiref>=2.0.0",
"ldap3>=2.5,<3",
"pyasn1>=0.4.6,<0.7",
],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Django",
],
)