diff --git a/pyproject.toml b/pyproject.toml index f0b590e..dbd5ea1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,10 +15,10 @@ classifiers = [ # List of https://pypi.org/classifiers/ "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.13", - "Programming Language :: Python :: 3.12", - "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Operating System :: OS Independent", "Topic :: Software Development :: Libraries :: Python Modules", "License :: OSI Approved :: Apache Software License", @@ -31,7 +31,8 @@ dependencies = [ "google-api-python-client>=2.157.0", # Google API client discovery "google-cloud-aiplatform>=1.87.0", # For VertexAI integrations, e.g. example store. "google-cloud-secret-manager>=2.22.0", # Fetching secrets in RestAPI Tool - "google-cloud-speech>=2.30.0", # For Audo Transcription + "google-cloud-speech>=2.30.0", # For Audio Transcription + "google-cloud-storage>=2.18.0, <3.0.0", # For GCS Artifact service "google-genai>=1.14.0", # Google GenAI SDK "graphviz>=0.20.2", # Graphviz for graph rendering @@ -83,7 +84,8 @@ test = [ "langchain-community>=0.3.17", "langgraph>=0.2.60", # For LangGraphAgent "litellm>=1.63.11", # For LiteLLM tests - "llama-index-readers-file>=0.4.0", # for retrieval tests + "llama-index-readers-file>=0.4.0", # For retrieval tests + "pytest-asyncio>=0.25.0", "pytest-mock>=3.14.0", "pytest-xdist>=3.6.1", @@ -108,7 +110,7 @@ extensions = [ "docker>=7.0.0", # For ContainerCodeExecutor "langgraph>=0.2.60", # For LangGraphAgent "litellm>=1.63.11", # For LiteLLM support - "llama-index-readers-file>=0.4.0", # for retrieval usings LlamaIndex. + "llama-index-readers-file>=0.4.0", # For retrieval using LlamaIndex. "lxml>=5.3.0", # For load_web_page tool. ]