-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
85 lines (72 loc) · 1.7 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
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "EnvBench"
version = "0.1.0"
description = "A Benchmark for Automated Environment Setup"
readme = "README.md"
requires-python = ">=3.10,<4.0"
license = { file = "LICENSE" }
authors = [
{ name = "Alexandra Eliseeva", email = "alexandra.eliseeva@jetbrains.com" },
{ name = "Alexander Kovrigin", email = "alexander.kovrigin@jetbrains.com" },
{ name = "Ilia Kholkin", email = "iluxa.kholkin@gmail.com" },
]
dependencies = [
"env-setup-utils",
"ai-agents-env-setup-data-collection",
"ai-agents-env-setup-inference",
"ai-agents-env-setup-evaluation",
]
[project.optional-dependencies]
dev = [
"mypy>=1.5.0",
"pytest>=7.4.0",
"ruff>=0.3.2",
"pyright>=1.1.367",
"isort>=5.13.2",
]
[project.scripts]
envbench = "envbench:main"
[tool.hatch.build.targets.wheel]
packages = []
[tool.hatch.build]
exclude = [
"/.git",
"/.github",
"/.idea",
"/.cadence",
"/data",
"/tmp"
]
[tool.uv.workspace]
members = [
".",
"data_collection",
"env_setup_utils",
"inference",
"evaluation",
]
[tool.uv.sources]
env-setup-utils = { workspace = true }
ai-agents-env-setup-data-collection = { workspace = true }
ai-agents-env-setup-inference = { workspace = true }
ai-agents-env-setup-evaluation = { workspace = true }
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
extend-select = ["I"]
[tool.ruff.lint.isort]
force-sort-within-sections = true
order-by-type = true
[tool.isort]
profile = "black"
force_sort_within_sections = true
order_by_type = true
[tool.mypy]
python_version = "3.10"
[[tool.mypy.overrides]]
module = ["*"]
ignore_missing_imports = true