-
Notifications
You must be signed in to change notification settings - Fork 46
/
pyproject.toml
65 lines (60 loc) · 1.47 KB
/
pyproject.toml
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
[project]
name = "ldeep"
dynamic = ["version"]
description = "In-depth ldap enumeration utility"
authors = [
{name = "b0z", email = "[email protected]"},
{name = "flgy", email = "[email protected]"},
]
dependencies = [
"commandparse >= 1.1.1, < 2",
"cryptography>=42.0.7",
"dnspython >= 1.15.0",
"gssapi >= 1.8.0, < 2",
"ldap3-bleeding-edge == 2.10.1.1337",
"oscrypto >= 1.3.0, < 2",
"pycryptodome >= 3.19.0, < 4",
"pycryptodomex >= 3.19.0, < 4",
"six >= 1.16.0, < 2",
"termcolor >= 2.3.0, < 3",
"tqdm >= 4.26.0, < 5",
]
requires-python = ">=3.8.1,<3.14"
readme = "README.rst"
license = {text = "MIT"}
keywords = [
"pentesting security windows active-directory networks",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Topic :: Security",
]
[tool.pdm.version]
source = "scm"
write_to = "ldeep/_version.py"
write_template = "__version__ = '{}'"
[tool.pdm.dev-dependencies]
exe = [
]
publishing = [
"twine>=5.1.0",
]
dev = [
"nuitka>=2.3",
]
lint = [
"black>=24.4.2",
]
[project.urls]
Homepage = "https://github.com/franc-pentest/ldeep"
[project.scripts]
ldeep = "ldeep.__main__:main"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"