-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1.16 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (37 loc) · 1.16 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
[project]
name = "strix-claude-code"
version = "1.1.0"
description = "AI-powered penetration testing using Claude CLI"
authors = [{name = "Strix Claude Code"}]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"docker>=7.0.0",
"httpx>=0.27.0",
"jinja2>=3.1.0",
# mcp 2.x removed the low-level decorator API (@server.list_tools /
# @server.call_tool) that mcp_server.py is built on; installing it makes the
# MCP server crash on startup with AttributeError, silently stripping every
# Strix tool (including write_report / create_vulnerability_report /
# finish_scan) from the scan agent. Pin to 1.x until mcp_server.py is ported.
"mcp>=1.0.0,<2",
"click>=8.1.0",
"rich>=13.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
]
[project.scripts]
strix-claude-cli = "strix_cli_claude.main:main"
strix-claude-tui = "strix_cli_claude.tui:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/strix_cli_claude"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
asyncio_mode = "auto"