Files
fuzzforge_ai/pyproject.toml
2025-10-30 15:17:26 +01:00

29 lines
688 B
TOML

[project]
name = "fuzzforge"
version = "0.7.3"
description = "FuzzForge Platform - Complete fuzzing and security testing platform with AI capabilities"
readme = "README.md"
license = { text = "BSL-1.1" }
requires-python = ">=3.11"
dependencies = [
"fuzzforge-sdk",
"fuzzforge-ai",
"fuzzforge-cli",
]
[project.scripts]
fuzzforge = "fuzzforge_cli.main:main"
ff = "fuzzforge_cli.main:main"
[build-system]
requires = ["uv_build>=0.8.22,<0.9.0"]
build-backend = "uv_build"
[tool.setuptools]
packages = []
[tool.uv.sources]
fuzzforge-sdk = { path = "./sdk", editable = true }
fuzzforge-ai = { path = "./ai", editable = true }
fuzzforge-cli = { path = "./cli", editable = true }