28 lines
527 B
TOML
28 lines
527 B
TOML
[project]
|
|
name = "bulkgen"
|
|
version = "0.1.0"
|
|
description = "Bulk-Generate Images with Generative AI"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"blackforest>=0.1.3",
|
|
"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"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"basedpyright>=1.38.0",
|
|
"pytest>=9.0.2",
|
|
"ruff>=0.15.1",
|
|
]
|