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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
[project]
name = "django-auth-ldap"
requires-python = ">=3.9"
description = "Django LDAP authentication backend"
readme = "README.rst"
authors = [
{ name="Peter Sagerson", email="psagers@ignorare.net"},
]
maintainers = [
{ name="François Freitag", email="mail@franek.fr" },
]
license = { text="BSD" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP",
]
dynamic = ["version"]
dependencies = [
"Django>=4.2",
"python-ldap>=3.1",
]
[project.urls]
Homepage = "https://github.com/django-auth-ldap/django-auth-ldap"
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"
Changelog = "https://github.com/django-auth-ldap/django-auth-ldap/releases/"
[tool.ruff.lint]
# See prefixes in https://beta.ruff.rs/docs/rules/
select = [
"F", # pyflakes
"E", # pycodestyle errors
"W", # pycodestyle warnings
"I", # isort
"C4", # flake8-comprehension
]
[build-system]
requires = [
"setuptools>=42",
"setuptools_scm[toml]>=3.4",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["django_auth_ldap"]
[tool.setuptools_scm]
write_to = "django_auth_ldap/version.py"
|