Files
vnassets/pyproject.toml
Michele Rossi 9564202e6d feat: add ComfyUI-style prompt weighting via compel
- Support (word:weight), [word], ((nested)) syntax
- Support BREAK for conditioning chunking (.and() translation)
- Use CompelForSDXL (modern API, avoids deprecation)
- Add --raw flag to bypass weighting and fall back to plain encoding
- Update README with Prompt Syntax section and examples
- Add docs/comfyui-prompt-style.md with design doc
2026-07-07 16:16:54 +02:00

26 lines
424 B
TOML

[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "vnassets"
version = "0.1.0"
requires-python = ">=3.12"
dependencies = [
"torch",
"diffusers",
"transformers",
"accelerate",
"safetensors",
"pillow",
"pyyaml",
"click",
"compel",
]
[tool.setuptools.packages.find]
exclude = ["models*"]
[project.scripts]
vnasset = "vnassets.cli:main"