CoolFace
Apppublic

Geraldino07/Meridian-ChatBot

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
pyproject.toml32 linesDownload Raw Back to root
1[build-system]2requires = ["setuptools>=61"]3build-backend = "setuptools.build_meta"4 5[project]6name = "meridian-bot"7version = "0.1.0"8description = "Meridian Electronics customer support chatbot (MCP-backed)"9readme = "README.md"10requires-python = ">=3.10"11dependencies = [12    "mcp>=1.0",13    "httpx>=0.27",14    "openai>=1.50",15    "gradio>=5.0",16    "pydantic>=2.0",17    "pydantic-settings>=2.0",18]19 20[project.optional-dependencies]21dev = [22    "pytest>=8.0",23    "pytest-asyncio>=0.24",24]25 26[tool.setuptools.packages.find]27where = ["src"]28 29[tool.pytest.ini_options]30asyncio_mode = "auto"31testpaths = ["tests"]32