-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpyproject.toml
41 lines (36 loc) · 1.01 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
[project]
name = "codegen-examples"
version = "0.0.0"
readme = "README.md"
requires-python = ">=3.12, <3.14"
dependencies = ["codegen>0.6.0"]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
"Development Status :: 4 - Beta",
"Environment :: MacOS X",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
]
[tool.ruff]
line-length = 200
exclude = ["**/input_repo/**", "**/output_repo/**", "**/repositories/**"]
[tool.uv]
cache-keys = [{ git = { commit = true, tags = true } }]
dev-dependencies = [
"pre-commit>=4.0.1",
"pre-commit-uv>=4.1.4",
"uv>=0.4.25",
"jupyterlab==4.4.1",
"deptry>=0.22.0",
]
[tool.uv.workspace]
members = ["examples/swebench_agent_run"]
[tool.pre-commit-uv]
requirements = ["strict-requirements"]
[tool.deptry]
package_module_name_map.codegen = "codegen"