- Add click as explicit dependency (already bundled with typer) - Replace typer.echo calls with click.echo + click.style for colorized output - Add BuildEvent enum and ProgressCallback to builder for decoupled progress reporting - Remove direct typer dependency from builder module - Show per-target status with colored labels (skip/ok/fail/...) - Display elapsed build time in summary - Colorize graph and clean command output - Update CLI tests to match new output format
36 lines
701 B
TOML
36 lines
701 B
TOML
[project]
|
|
name = "bulkgen"
|
|
version = "0.1.0"
|
|
description = "Bulk-Generate Images with Generative AI"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"click>=8.0.0",
|
|
"httpx>=0.27.0",
|
|
"mistralai>=1.0.0",
|
|
"networkx>=3.6.1",
|
|
"pydantic>=2.12.5",
|
|
"pyyaml>=6.0",
|
|
"typer>=0.23.1",
|
|
]
|
|
|
|
[project.scripts]
|
|
bulkgen = "bulkgen.cli:app"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
filterwarnings = [
|
|
"ignore::pydantic.warnings.PydanticDeprecatedSince20",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"basedpyright>=1.38.0",
|
|
"pytest>=9.0.2",
|
|
"pytest-asyncio>=0.25.0",
|
|
"ruff>=0.15.1",
|
|
]
|