Spaces:
Runtime error
Runtime error
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", | |
) | |