-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (71 loc) · 1.62 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (71 loc) · 1.62 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[project]
name = "openhound"
dynamic = ["version"]
description = "OpenGraph collector framework for BloodHound"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"alive-progress>=3.3.0",
"dlt==1.26.0",
"duckdb==1.5.2",
"griffe>=1.15.0",
"griffe-fieldz>=0.5.0",
"mkdocstrings[python]>=1.0.0",
"psutil>=7.2.1",
"pydantic==2.13.3",
"tqdm>=4.67.1",
"typer>=0.25.1",
"cookiecutter>=2.6.0",
"jinja2>=3.1.6",
"types-requests==2.33.0.20260503",
"pydantic-extra-types>=2.11.1",
]
[project.optional-dependencies]
all = [
"openhound-jamf==0.2.3",
"openhound-github==0.3.7",
"openhound-okta==0.1.6",
]
jamf = [
"openhound-jamf==0.2.3",
]
github = [
"openhound-github==0.3.7"
]
okta = [
"openhound-okta==0.1.6",
]
[project.scripts]
openhound = "openhound.main:app"
[build-system]
requires = ['hatchling', 'hatch-vcs']
build-backend = 'hatchling.build'
[tool.marimo.runtime]
dotenv = [".env"]
[tool.ruff]
exclude = ["src/openhound/cookiecutter-templates/*"]
[tool.mypy]
exclude = ["src/openhound/cookiecutter-templates/*"]
disable_error_code = ["import-untyped"]
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
[dependency-groups]
dev = [
"openhound-faker==0.0.6",
"ipython>=9.13.0",
"pre-commit>=4.5.1",
"pytest>=9.0.1",
"marimo>=0.23.5",
"altair>=6.1.0",
"fastapi>=0.136.1",
"zensical>=0.0.40",
"ruff>=0.15.4",
"mypy>=1.19.1",
"types-pyyaml>=6.0.12.20250915",
"types-requests>=2.33.0.20260408",
"httpx>=0.28.1",
]