pyproject.toml•618 B
[project]
name = "vybe-virtual-tryon"
version = "0.1.0"
description = "FastMCP server for Vybe Virtual Try-On using Replicate API"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi",
"fastmcp==2.11.0",
"replicate",
"python-dotenv",
"uvicorn",
"httpx",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
]
# Remove build-system since this is a standalone script, not a package
# [build-system]
# requires = ["hatchling"]
# build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]