Spaces:
Running
Running
File size: 625 Bytes
3f10e1f 71e0e47 3f10e1f 71e0e47 a2f2bbf 3f10e1f a2f2bbf 3f10e1f 71e0e47 a2f2bbf 71e0e47 a2f2bbf 3f10e1f 71e0e47 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
[build-system]
requires = ["hatchling>=1.21.0"]
build-backend = "hatchling.build"
[project]
name = "gradio_workflowbuilder"
version = "0.0.0-local"
description = "Local patched WorkflowBuilder for HuggingFace Space demo"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "YOUR NAME" }]
license = { text = "Apache-2.0" }
dependencies = [
"gradio>=5.0,<6.0"
]
[tool.hatch.build]
sources = ["."] # ←★ 여기만 변경
artifacts = [
"backend/gradio_workflowbuilder/templates/**"
]
[tool.hatch.build.targets.wheel]
packages = ["backend/gradio_workflowbuilder"] # 그대로
|