mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-02-12 20:32:46 +00:00
Version updates: - README.md badge: 0.6.0 → 0.7.0 - cli/pyproject.toml: 0.6.0 → 0.7.0 - backend/pyproject.toml: 0.6.0 → 0.7.0 - sdk/pyproject.toml: 0.6.0 → 0.7.0 - ai/pyproject.toml: 0.6.0 → 0.7.0 Add CHANGELOG.md with comprehensive release notes for 0.7.0: - Secret detection workflows (gitleaks, trufflehog, llm_secret_detection) - AI module and agent integration - Temporal migration completion - CI/CD integration - Documentation updates - Bug fixes and improvements Update llm_analysis default model to gpt-5-mini
30 lines
650 B
TOML
30 lines
650 B
TOML
[project]
|
|
name = "fuzzforge-sdk"
|
|
version = "0.7.0"
|
|
description = "Python SDK for FuzzForge security testing workflow orchestration platform"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Tanguy Duhamel", email = "tduhamel@fuzzinglabs.com" }
|
|
]
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"httpx>=0.27.0",
|
|
"pydantic>=2.0.0",
|
|
"websockets>=13.0",
|
|
"sseclient-py>=1.8.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0.0",
|
|
"pytest-asyncio>=0.23.0",
|
|
"pytest-mock>=3.14.0",
|
|
"black>=24.0.0",
|
|
"isort>=5.13.0",
|
|
"mypy>=1.11.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.8.17,<0.9.0"]
|
|
build-backend = "uv_build"
|