forked from withmartian/ares
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (85 loc) · 2.03 KB
/
pyproject.toml
File metadata and controls
92 lines (85 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/ares"]
[project]
name = "martian-ares"
version = "0.0.2"
authors = [
{name = "Joshua Greaves", email = "josh@withmartian.com"},
{name = "Ryan Smith", email = "ryan@withmartian.com"},
{name = "Alex Zverianskii", email = "alex@withmartian.com"},
]
description = "Agentic Research and Evaluation Suite"
readme = "README.md"
requires-python = ">=3.12"
license = {file = "LICENSE"}
dependencies = [
"anthropic>=0.76.0",
"daytona>=0.125.0",
"docker>=7.1.0",
"frozendict>=2.4.7",
"harbor>=0.1.32",
"httpx>=0.28.1",
"jinja2>=3.1.6",
"mini-swe-agent>=1.17.3",
"numpy>=2.3.5",
# TODO: Fix this hard requirement.
# This is required by harbor.
"openai<=1.100.0",
"pydantic>=2.12.5",
"pydantic-settings>=2.12.0",
"pyyaml>=6.0.3",
"swebench>=4.1.0",
"tenacity>=9.1.2",
]
[project.optional-dependencies]
tensorboard = ["tensorboard>=2.20.0", "torch>=2.9.1"]
llamacpp = ["llama-cpp-python>=0.3.16"]
eval-viz = ["rich>=13.7.0", "textual>=1.0.0"]
docs = [
"sphinx>=7.0.0",
"sphinx-rtd-theme>=2.0.0",
"sphinx-autodoc-typehints>=1.25.0",
]
[project.urls]
Homepage = "https://github.com/withmartian/ares"
Repository = "https://github.com/withmartian/ares"
[dependency-groups]
dev = [
"pyright>=1.1.406",
"ruff>=0.14.1",
"pytest>=8.0.0",
"pytest-asyncio>=0.25.2",
"pytest-xdist>=3.6.0",
"hatchling>=1.28.0",
"twine>=6.2.0",
]
examples = [
"transformers>=4.57.3",
"llama-cpp-python>=0.3.16",
"rich>=13.7.0",
"textual>=1.0.0",
"tqdm>=4.66.0",
"simple-parsing>=0.1.8",
"tinker>=0.9.0",
"tinker-cookbook>=0.1.0",
"chz>=0.4.0",
"numpy>=2.4.0",
]
[tool.pytest.ini_options]
testpaths = ["src"]
python_files = ["test_*.py", "*_test.py"]
[tool.pyright]
pythonVersion = "3.12"
typeCheckingMode = "basic"
exclude = [
".venv",
"venv",
"build",
"dist",
".git",
"__pycache__",
"node_modules"
]