mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-02-12 20:32:46 +00:00
45 lines
733 B
TOML
45 lines
733 B
TOML
[project]
|
|
name = "fuzzforge-ai"
|
|
version = "0.6.0"
|
|
description = "FuzzForge AI orchestration module"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"google-adk",
|
|
"a2a-sdk",
|
|
"litellm",
|
|
"python-dotenv",
|
|
"httpx",
|
|
"uvicorn",
|
|
"rich",
|
|
"agentops",
|
|
"fastmcp",
|
|
"mcp",
|
|
"typing-extensions",
|
|
"cognee>=0.3.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest",
|
|
"pytest-asyncio",
|
|
"black",
|
|
"ruff",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/fuzzforge_ai"]
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|
|
|
|
[tool.uv]
|
|
dev-dependencies = [
|
|
"pytest",
|
|
"pytest-asyncio",
|
|
]
|