Final_Assignment_Template / pyproject.toml
Stardust00's picture
setup tools
0335261
raw
history blame contribute delete
662 Bytes
[project]
name = "agent-evaluation"
version = "0.1.0"
description = "Basic Agent Evaluation Runner"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"gradio[oauth]>=4.0.0",
"requests>=2.25.0",
"pandas>=1.3.0",
"pypdf>=5.6.0",
"python-dotenv>=1.0.0",
"langchain>=0.1.0",
"langchain-community>=0.0.20",
"langchain-core>=0.1.0",
"langchain-openai>=0.0.5",
"langchain-google-community>=1.0.0",
"openpyxl>=3.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"black>=22.0",
"flake8>=4.0",
]
[tool.uv]
dev-dependencies = [
"pytest>=7.0",
"black>=22.0",
"flake8>=4.0",
]