-
Notifications
You must be signed in to change notification settings - Fork 147
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 1.55 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
[build-system]
requires = ["setuptools>=43.0.0", "wheel", "setuptools_scm[toml]>=3.4.1"]
build-backend = "setuptools.build_meta"
[project]
name = "ADExplorerSnapshot"
version = "2.0.0"
description = "ADExplorerSnapshot.py is an AD Explorer snapshot parser. It is made as an ingestor for BOFHound / BloodHound, and also supports full-object dumping to NDJSON."
readme = "README.md"
requires-python = ">=3.12"
license = {text = "MIT"}
authors = [
{name = "Cedric Van Bockhaven", email = "cedric@cedric.ninja"}
]
maintainers = [
{name = "Cedric Van Bockhaven", email = "cedric@cedric.ninja"}
]
keywords = ["bloodhound", "active-directory", "ad-explorer", "ldap", "security"]
classifiers = [
"Environment :: Console",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Security"
]
dependencies = [
"bloodhound-ce @ git+https://github.com/dirkjanm/BloodHound.py@bloodhound-ce",
"dissect.cstruct>=2.0",
"frozendict",
"requests",
"rich>=13.0.0",
"certipy-ad>=5.0.2",
]
[project.urls]
Homepage = "https://github.com/c3c/ADExplorerSnapshot.py"
Repository = "https://github.com/c3c/ADExplorerSnapshot.py"
[project.scripts]
"ADExplorerSnapshot.py" = "adexpsnapshot:main"
"adexplorersnapshot" = "adexpsnapshot:main"
[tool.setuptools]
packages = ["adexpsnapshot", "adexpsnapshot.parser"]
[tool.setuptools_scm]