Files
Auto-GPT/pyproject.toml
2023-06-18 11:14:54 -04:00

24 lines
529 B
TOML

[tool.poetry]
name = "agbenchmark"
version = "0.1.0"
description = "Benchmarking the performance of agents far and wide, regardless of how they are set up and how they work"
authors = ["Silen Naihin <silen.naihin@gmail.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
pytest = "^7.3.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests", "benchmark/challenges",
]