|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61.0", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "agent-arena" |
| 7 | +version = "0.1.0" |
| 8 | +description = "LLM-driven autonomous agent benchmarking framework" |
| 9 | +readme = "README.md" |
| 10 | +requires-python = ">=3.11" |
| 11 | +license = {text = "Apache-2.0"} |
| 12 | +authors = [ |
| 13 | + {name = "Andrew Madison"}, |
| 14 | + {name = "Justin Madison"}, |
| 15 | +] |
| 16 | +keywords = ["ai", "agents", "llm", "benchmark", "simulation"] |
| 17 | +classifiers = [ |
| 18 | + "Development Status :: 3 - Alpha", |
| 19 | + "Intended Audience :: Developers", |
| 20 | + "Intended Audience :: Science/Research", |
| 21 | + "License :: OSI Approved :: Apache Software License", |
| 22 | + "Programming Language :: Python :: 3", |
| 23 | + "Programming Language :: Python :: 3.11", |
| 24 | + "Programming Language :: Python :: 3.12", |
| 25 | + "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| 26 | +] |
| 27 | + |
| 28 | +dependencies = [ |
| 29 | + "numpy>=1.24.0", |
| 30 | + "pydantic>=2.0.0", |
| 31 | + "msgpack>=1.0.5", |
| 32 | + "hydra-core>=1.3.0", |
| 33 | + "omegaconf>=2.3.0", |
| 34 | + "requests>=2.31.0", |
| 35 | + "python-dotenv>=1.0.0", |
| 36 | + "tenacity>=8.2.0", |
| 37 | + "aiohttp>=3.9.0", |
| 38 | + "tqdm>=4.66.0", |
| 39 | + "rich>=13.7.0", |
| 40 | + "structlog>=23.2.0", |
| 41 | + "python-json-logger>=2.0.7", |
| 42 | + "pandas>=2.0.0", |
| 43 | +] |
| 44 | + |
| 45 | +[project.optional-dependencies] |
| 46 | +llm = [ |
| 47 | + "llama-cpp-python>=0.2.0", |
| 48 | + "openai>=1.0.0", |
| 49 | + "torch>=2.0.0", |
| 50 | + "transformers>=4.35.0", |
| 51 | +] |
| 52 | + |
| 53 | +vector = [ |
| 54 | + "faiss-cpu>=1.7.4", |
| 55 | + "sentence-transformers>=2.2.0", |
| 56 | + "chromadb>=0.5.0", |
| 57 | +] |
| 58 | + |
| 59 | +full = [ |
| 60 | + "agent-arena[llm,vector]", |
| 61 | + "pillow>=10.0.0", |
| 62 | +] |
| 63 | + |
| 64 | +dev = [ |
| 65 | + "pytest>=7.4.0", |
| 66 | + "pytest-asyncio>=0.21.0", |
| 67 | + "pytest-cov>=4.1.0", |
| 68 | + "black>=23.0.0", |
| 69 | + "ruff>=0.1.0", |
| 70 | + "mypy>=1.5.0", |
| 71 | +] |
| 72 | + |
| 73 | +[project.urls] |
| 74 | +Homepage = "https://github.com/JustInternetAI/AgentArena" |
| 75 | +Repository = "https://github.com/JustInternetAI/AgentArena" |
| 76 | +Issues = "https://github.com/JustInternetAI/AgentArena/issues" |
| 77 | + |
| 78 | +[tool.setuptools] |
| 79 | +package-dir = {"" = "python"} |
| 80 | + |
| 81 | +[tool.setuptools.packages.find] |
| 82 | +where = ["python"] |
| 83 | + |
| 84 | +[tool.pytest.ini_options] |
| 85 | +testpaths = ["tests"] |
| 86 | +python_files = ["test_*.py"] |
| 87 | +python_classes = ["Test*"] |
| 88 | +python_functions = ["test_*"] |
| 89 | +addopts = [ |
| 90 | + "-v", |
| 91 | + "--strict-markers", |
| 92 | + "--cov=agent_runtime", |
| 93 | + "--cov=backends", |
| 94 | + "--cov=tools", |
| 95 | +] |
| 96 | + |
| 97 | +[tool.black] |
| 98 | +line-length = 100 |
| 99 | +target-version = ["py311", "py312"] |
| 100 | +include = '\.pyi?$' |
| 101 | + |
| 102 | +[tool.ruff] |
| 103 | +line-length = 100 |
| 104 | +target-version = "py311" |
| 105 | +select = ["E", "F", "I", "N", "W", "UP"] |
| 106 | +ignore = ["E501"] # Line too long (handled by black) |
| 107 | + |
| 108 | +[tool.mypy] |
| 109 | +python_version = "3.11" |
| 110 | +warn_return_any = true |
| 111 | +warn_unused_configs = true |
| 112 | +disallow_untyped_defs = false |
| 113 | +ignore_missing_imports = true |
0 commit comments