hokusai/pyproject.toml
Konstantin Fickel 7ab25d49cb
refactor: switch to basedpyright, remove pydantic-settings
- Replace pyright with basedpyright in devenv.nix (custom hook)
- Add basedpyright to devenv packages
- Fix all basedpyright warnings: add DiGraph[str] type args, annotate
  class attributes, narrow SyncResponse, handle unused call results,
  suppress unavoidable Any from yaml.safe_load and untyped blackforest
- Replace pydantic-settings[yaml] with direct pyyaml dependency
- Update CLAUDE.md to reflect basedpyright and dependency changes
2026-02-13 20:25:28 +01:00

26 lines
473 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 = "main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=9.0.2",
]