"""Setup script for the GAIA assessment agent.""" from setuptools import setup, find_packages setup( name="gaia_assessment_agent", version="1.0.0", description="GAIA Assessment Agent for Hugging Face Agents Course", author="Your Name", author_email="your.email@example.com", packages=find_packages(), install_requires=[ "gradio==5.25.2", "requests==2.31.0", "pandas==2.2.0", "python-dotenv==1.0.0", "langchain==0.1.12", "langchain-core==0.1.30", "langchain-community==0.0.24", "langchain-google-genai==0.0.11", "langchain-anthropic==0.0.10", "langchain-groq==0.1.4", "langchain-openai==0.0.10", "langchain-huggingface==0.0.2", "langchain-tavily==0.1.2", "langgraph==0.1.17", "huggingface_hub==0.22.1", "supabase==2.4.1", "sentence-transformers==2.6.0", "arxiv==2.1.0", "wikipedia==1.4.0", "tavily-python==0.2.9", ], python_requires=">=3.9", )