forked from scabench-org/hound
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (63 loc) · 1.56 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (63 loc) · 1.56 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
[project]
name = "hound"
version = "2.0.0"
description = "AI-powered security analysis system with knowledge graph backend"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
# LLM Integration
"openai>=1.0.0",
"google-generativeai>=0.3.0",
"anthropic>=0.3.0",
"xai-sdk>=0.0.5",
"tiktoken>=0.5.0",
# CLI & Configuration
"typer>=0.9.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0",
"pyyaml>=6.0",
# Async Support
"httpx>=0.25.0",
# Data Processing
"orjson>=3.9.0",
# Graph algorithms
"networkx>=3.0",
"scikit-learn>=1.3.0", # For clustering
# Development
"rich>=13.0.0", # Pretty CLI output
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
"black>=23.0.0",
"mypy>=1.5.0",
"ruff>=0.1.0",
]
[project.scripts]
hound = "hound:main"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["llm", "static", "ingest", "commands", "analysis", "visualization", "utils"]
[tool.black]
line-length = 100
target-version = ['py310']
[tool.ruff]
line-length = 100
select = ["E", "F", "I"]
[tool.mypy]
python_version = "3.10"
strict = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
addopts = "-v --tb=short"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"integration: marks tests as requiring external services",
]