mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-02-12 19:12:49 +00:00
31 lines
605 B
TOML
31 lines
605 B
TOML
[project]
|
|
name = "fuzzforge-cli"
|
|
version = "0.0.1"
|
|
description = "FuzzForge CLI - Command-line interface for FuzzForge OSS."
|
|
authors = []
|
|
readme = "README.md"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"fuzzforge-runner==0.0.1",
|
|
"fuzzforge-types==0.0.1",
|
|
"rich>=14.0.0",
|
|
"typer==0.20.1",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
lints = [
|
|
"bandit==1.8.6",
|
|
"mypy==1.18.2",
|
|
"ruff==0.14.4",
|
|
]
|
|
tests = [
|
|
"pytest==9.0.2",
|
|
]
|
|
|
|
[project.scripts]
|
|
fuzzforge = "fuzzforge_cli.__main__:main"
|
|
|
|
[tool.uv.sources]
|
|
fuzzforge-runner = { workspace = true }
|
|
fuzzforge-types = { workspace = true }
|