forge-visuals / pyproject.toml
jkorstad's picture
Update forge-visuals from local forge-bricks
98ae164 verified
Raw
History Blame Contribute Delete
629 Bytes
[project]
name = "forge-visuals"
version = "0.1.0"
description = "Forge-Visuals brick: Text-to-image concepts, editing, description (for bidirectional flows), and sprite prep"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"gradio>=5.0,<7.0",
"spaces",
"pillow>=10.0",
"gradio-client",
"huggingface_hub",
"forge-bricks-common",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["."]
[project.scripts]
forge-visuals = "app:main" # optional entry point
[tool.uv.sources]
forge-bricks-common = { workspace = true }