-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
55 lines (52 loc) · 1.11 KB
/
pyproject.toml
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
[project]
name = "r2e"
version = "0.1.0"
requires-python = ">=3.11"
description = ""
readme = "README.md"
authors = [{name = "Your Name", email = "[email protected]"}]
dependencies = [
"anthropic>=0.21.3",
"black>=24.3.0",
"coverage>=7.4.4",
"datasets>=2.18.0",
"docker>=7.0.0",
"fire>=0.6.0",
"flask>=3.0.2",
"gitpython>=3.1.43",
"ipykernel>=6.29.4",
"ipywidgets>=8.1.2",
"isort>=5.13.2",
"jsonlines>=4.0.0",
"matplotlib>=3.8.3",
"mypy>=1.9.0",
"networkx>=3.3",
"nltk>=3.8.1",
"openai>=1.16.0",
"openpyxl>=3.1.2",
"pebble>=5.0.7",
"pycg>=0.0.8",
"pyright>=1.1.357",
"pytest>=8.1.1",
"rich>=13.7.1",
"rpyc>=6.0.0",
"seaborn>=0.13.2",
"setuptools>=69.2.0",
"skypilot[gcp]>=0.5.0",
"termcolor>=2.4.0",
"tiktoken>=0.6.0",
"tomlkit>=0.12.4",
"tqdm>=4.66.2",
"r2e-test-server>=0.1.8",
"click>=8.1.7",
"diskcache>=5.6.3",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
r2e = "r2e.cli:r2e"
[project.optional-dependencies]
vllm = [
"vllm>=0.6.3.post1",
]