-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·40 lines (36 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
executable file
·40 lines (36 loc) · 1.11 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bloodhound-cli" # The package name as installed via pip (pip install bloodhound-cli)
version = "1.2.6" # Bump: add CE skeleton, --edition, --verbose, rich optional
description = "CLI for querying BloodHound data (Legacy Neo4j + CE skeleton)."
readme = "README.md"
authors = [
{ name = "ADScan", email = "[email protected]" }
]
license = { text = "MIT" }
requires-python = ">=3.9"
keywords = ["bloodhound", "neo4j", "ad", "active directory", "pentesting"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"neo4j>=5.0.0",
"requests>=2.31.0",
"rich>=13.7.0",
"structlog>=24.1.0",
"pydantic-settings>=2.4.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3,<9.0",
"pylint>=3.3,<3.4",
"ruff>=0.5.0",
"build>=1.2.2",
]
# Define the entry point that will be executed when a user runs "bloodhound-cli" in the terminal.
[project.scripts]
bloodhound-cli = "bloodhound_cli.main:main"