-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (52 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
61 lines (52 loc) · 1.21 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
[project]
name = "training-data-packer"
version = "0.1.0"
description = "Packaging annotated datasets into final training data."
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"coverage==7.14.0",
"glom>=25.12.0",
"loguru>=0.7.3",
"orjson>=3.11.8",
"pyyaml>=6.0.3",
"zstandard>=0.25.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.4.1",
"parameterized>=0.9.0",
]
[project.scripts]
oellm-package-data = "training_data_packer.package:main"
oellm-package-merge = "training_data_packer.merge:main"
[build-system]
requires = ["uv_build>=0.7.19"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "training_data_packer"
module-root = ""
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[dependency-groups]
dev = [
"parameterized>=0.9.0",
]