Spaces:
Runtime error
Runtime error
File size: 589 Bytes
cf0f589 6c6f94b cf0f589 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
from setuptools import setup, find_packages
setup(
name="pydantic-ai-mcp-agent",
version="0.1.0",
description="Pydantic AI MCP Agent",
author="DeepResearchAgents",
author_email="info@deepresearchagents.com",
packages=find_packages(),
install_requires=[
"instructor>=0.1.0",
"python-dotenv>=1.0.0",
"mcp>=0.1.0",
"openai>=1.0.0",
"fastapi>=0.104.0",
"uvicorn>=0.23.0",
"httpx>=0.25.0",
"pydantic>=2.4.0",
"asyncio>=3.4.3",
"requests>=2.31.0",
],
python_requires=">=3.8",
)
|