Initial commit

This commit is contained in:
Tanguy Duhamel
2025-09-29 21:26:41 +02:00
parent f0fd367ed8
commit 323a434c73
208 changed files with 72069 additions and 53 deletions
+29
View File
@@ -0,0 +1,29 @@
[project]
name = "fuzzforge-sdk"
version = "0.6.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"