mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-02-12 19:12:49 +00:00
41 lines
992 B
TOML
41 lines
992 B
TOML
[project]
|
|
name = "fuzzforge-oss"
|
|
version = "1.0.0"
|
|
description = "FuzzForge OSS - AI-driven security research platform for local execution"
|
|
readme = "README.md"
|
|
requires-python = ">=3.14"
|
|
authors = [
|
|
{ name = "FuzzingLabs", email = "contact@fuzzinglabs.com" }
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest==9.0.2",
|
|
"pytest-asyncio==1.3.0",
|
|
"pytest-httpx==0.36.0",
|
|
"fuzzforge-tests",
|
|
"fuzzforge-common",
|
|
"fuzzforge-types",
|
|
"fuzzforge-mcp",
|
|
]
|
|
|
|
[tool.uv.workspace]
|
|
members = [
|
|
"fuzzforge-common",
|
|
"fuzzforge-types",
|
|
"fuzzforge-modules/fuzzforge-modules-sdk",
|
|
"fuzzforge-runner",
|
|
"fuzzforge-mcp",
|
|
"fuzzforge-cli",
|
|
"fuzzforge-tests",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
fuzzforge-common = { workspace = true }
|
|
fuzzforge-types = { workspace = true }
|
|
fuzzforge-modules-sdk = { workspace = true }
|
|
fuzzforge-runner = { workspace = true }
|
|
fuzzforge-mcp = { workspace = true }
|
|
fuzzforge-cli = { workspace = true }
|
|
fuzzforge-tests = { workspace = true }
|