-
-
Notifications
You must be signed in to change notification settings - Fork 451
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (57 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
64 lines (57 loc) · 1.3 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "certipy-ad"
version = "5.0.4"
description = "Active Directory Certificate Services enumeration and abuse"
readme = "README.md"
authors = [
{name = "ly4k"}
]
license = {text = "MIT"}
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"asn1crypto~=1.5.1",
"cryptography~=42.0.8",
"impacket~=0.13.0",
"ldap3~=2.9.1",
"pyasn1~=0.6.1",
"dnspython~=2.7.0",
"requests~=2.32.3",
"pycryptodome~=3.22.0",
"beautifulsoup4~=4.13.4",
"httpx~=0.28.1",
"argcomplete~=3.6.2",
]
[project.optional-dependencies]
bloodhound = [
"neo4j~=5.28.1",
]
[project.urls]
Homepage = "https://github.com/ly4k/Certipy"
"Bug Tracker" = "https://github.com/ly4k/Certipy/issues"
[project.scripts]
certipy = "certipy.entry:main"
[tool.setuptools]
packages = [
"certipy",
"certipy.commands",
"certipy.commands.parsers",
"certipy.lib",
]
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
[tool.black]
line-length = 88
target-version = ['py312']