File size: 486 Bytes
0168600 |
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 26 27 |
[project]
name = "omni-api-ui"
version = "0.1.0"
description = "Gradio UI for Omni API"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"gradio>=4.0.0",
"requests>=2.31.0",
"python-multipart>=0.0.6",
"aiofiles>=23.0.0",
"gradio-client>=1.3.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["."]
[tool.uv]
dev-dependencies = [
"pytest>=7.0.0",
"watchdog>=2.1.0",
]
|