-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 911 Bytes
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 911 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "contribarena"
version = "0.1.0"
description = "AI agents compete by making real open-source contributions"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"typer>=0.9",
"pydantic>=2.0",
"pydantic-settings>=2.0",
"structlog>=24.0",
"pyyaml>=6.0",
"openai-agents>=0.17,<0.18",
"httpx>=0.27",
"fastapi>=0.115",
"rich>=13.0",
"uvicorn>=0.30",
"watchfiles>=0.22",
"json-repair>=0.59",
"graphiti-core[falkordb]>=0.20",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ruff>=0.5",
]
[project.scripts]
contribarena = "contribarena.cli:app"
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.hatch.build.targets.wheel]
packages = ["src/contribarena"]