forked from swefficiency/swefficiency
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
58 lines (53 loc) · 1.49 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
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[project]
name = "swefficiency"
version = "1.0.0"
description = "The official SWE-fficiency package - a benchmark for evaluating LMs on automated performance engineering"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "Apache-2.0"}
authors = [
{name = "SWEfficiency Team", email = "swefficiencyperf@gmail.com"}
]
keywords = ["nlp", "benchmark", "code", "performance", "optimization"]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"beautifulsoup4",
"chardet",
"datasets",
"docker",
"fastcore",
"ghapi",
"GitPython",
"pandas",
"pre-commit",
"python-dotenv",
"requests",
"rich",
"tqdm",
"unidiff",
]
[project.optional-dependencies]
inference = [
"jedi",
"jinja2",
]
[project.scripts]
swefficiency = "swefficiency.cli:main"
[project.urls]
Homepage = "https://swefficiency.com"
Repository = "https://github.com/swefficiency/swefficiency"
Documentation = "https://github.com/swefficiency/swefficiency"
"Bug Tracker" = "https://github.com/swefficiency/swefficiency/issues"
Paper = "https://arxiv.org/abs/2511.06090"
[tool.setuptools.packages.find]
include = ["swefficiency*"]