forked from SWE-bench/SWE-bench
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (87 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
93 lines (87 loc) · 1.89 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
93
[build-system]
requires = ['setuptools>=42']
build-backend = 'setuptools.build_meta'
[project]
name = "swebench"
dynamic = ["version"]
authors = [
{name = "SWE-bench team", email = "support@swebench.com"},
]
description = "The official SWE-bench package - a benchmark for evaluating LMs on software engineering"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["nlp", "benchmark", "code"]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"beautifulsoup4",
"chardet",
"datasets",
"docker",
"ghapi",
"GitPython",
"modal",
"pre-commit",
"python-dotenv",
"requests",
"rich",
"tenacity",
"tqdm",
"unidiff",
]
[project.optional-dependencies]
datasets = [
"protobuf",
"sentencepiece",
"tiktoken",
"transformers",
"openai",
"anthropic",
"jedi",
]
inference = [
"torch",
"anthropic",
"jedi",
"openai",
"peft",
"protobuf",
"sentencepiece",
"tiktoken",
"transformers",
"triton",
"flash_attn",
"requests",
]
test = [
"pytest",
"pytest-cov",
]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocs-glightbox",
"mkdocstrings",
"mkdocstrings-python",
"mike",
"pymdown-extensions",
"mkdocs-include-markdown-plugin",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "swebench.__version__"}
[tool.setuptools.packages.find]
where = ["."]
namespaces = false
[project.urls]
"Documentation" = "https://github.com/swe-bench/SWE-bench"
"Bug Reports" = "http://github.com/swe-bench/SWE-bench/issues"
"Source Code" = "http://github.com/swe-bench/SWE-bench"
"Website" = "https://swebench.com"