-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1 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
[project]
name = "codegen-examples"
version = "0.0.0"
readme = "README.md"
requires-python = ">=3.12, <3.14"
dependencies = [
"codegen==0.5.3",
]
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.3.4",
"deptry>=0.22.0",
]
[tool.pre-commit-uv]
requirements = [
"strict-requirements",
]
[tool.deptry]
package_module_name_map.codegen = "codegen"