mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-04-11 20:58:31 +02:00
Rename the entire project from FuzzForge to SecPipe: - Python packages: fuzzforge_cli → secpipe_cli, fuzzforge_common → secpipe_common, fuzzforge_mcp → secpipe_mcp, fuzzforge_tests → secpipe_tests - Directories: fuzzforge-cli → secpipe-cli, fuzzforge-common → secpipe-common, fuzzforge-mcp → secpipe-mcp, fuzzforge-tests → secpipe-tests - Environment variables: FUZZFORGE_* → SECPIPE_* - MCP server name: SecPipe MCP Server - CI workflows, Makefile, Dockerfile, hub-config, NOTICE updated - Fix mcp-server.yml to use uvicorn secpipe_mcp.application:app
30 lines
537 B
TOML
30 lines
537 B
TOML
[project]
|
|
name = "secpipe-cli"
|
|
version = "0.0.1"
|
|
description = "SecPipe CLI - Command-line interface for SecPipe AI."
|
|
authors = []
|
|
readme = "README.md"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"secpipe-mcp==0.0.1",
|
|
"rich>=14.0.0",
|
|
"textual>=1.0.0",
|
|
"typer==0.20.1",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
lints = [
|
|
"bandit==1.8.6",
|
|
"mypy==1.18.2",
|
|
"ruff==0.14.4",
|
|
]
|
|
tests = [
|
|
"pytest==9.0.2",
|
|
]
|
|
|
|
[project.scripts]
|
|
secpipe = "secpipe_cli.__main__:main"
|
|
|
|
[tool.uv.sources]
|
|
secpipe-mcp = { workspace = true }
|