-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (73 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
81 lines (73 loc) · 1.6 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "squeez"
version = "0.1.4"
description = "Squeeze verbose LLM agent tool output down to only the relevant lines"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [
{name = "Adam Kovacs", email = "kovacs@krlabs.eu"},
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"openai>=1.0.0",
"pyyaml>=6.0",
]
[project.urls]
Homepage = "https://github.com/KRLabsOrg/squeez"
Documentation = "https://krlabsorg.github.io/squeez"
Dataset = "https://huggingface.co/datasets/KRLabsOrg/tool-output-extraction-swebench"
[project.optional-dependencies]
local = [
"torch>=2.1.0",
"transformers>=5.0.0",
"peft>=0.7.0",
]
encoder = [
"torch>=2.1.0",
"transformers>=5.0.0",
"datasets>=2.14.0",
]
train = [
"squeez[local]",
"datasets>=2.14.0",
"trl>=0.24.0",
"unsloth",
]
all = [
"squeez[train]",
"squeez[encoder]",
]
dev = [
"squeez[all]",
"pytest>=7.0.0",
"ruff>=0.0.270",
]
docs = [
"mkdocs-material>=9.0",
"mkdocstrings[python]>=0.24",
]
[project.scripts]
squeez = "squeez.cli:main"
[tool.setuptools.packages.find]
include = ["squeez*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = [
"E", # flake8
"F", # pyflakes
"I", # isort
]
ignore = [
"E501", # line length
]