-
Notifications
You must be signed in to change notification settings - Fork 284
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 856 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 856 Bytes
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
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "ldap3"
version = "2.10.2rc3"
authors = [
{ name="Giovanni Cannata", email="cannatag@gmail.com" },
]
description = "A pure Python LDAPv3 client library strictly conforming to RFC 4510"
readme = "README.rst"
requires-python = ">=3.4"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
'Development Status :: 5 - Production/Stable'
]
dependencies = [
"pyasn1>=0.4.6",
"pycryptodomex",
]
license = "LGPL-3.0-or-later"
license-files = ["LICENSE.txt", "COPYING.txt", "COPYING.LESSER.txt"]
[project.urls]
Homepage = "https://github.com/cannatag/ldap3"
Issues = "https://github.com/cannatag/ldap3/issues"
[project.optional-dependencies]
winkerberos = ["winkerberos"]
gssapi = ["gssapi"]