-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 854 Bytes
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 854 Bytes
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
[project]
name = "hippofloop"
version = "0.1.0"
description = "Fine-tuning pipeline to distill floop's LLM consolidator into a small local model"
requires-python = ">=3.11"
dependencies = [
"pyyaml>=6.0",
"datasets>=2.0",
]
[project.optional-dependencies]
train = [
"unsloth[colab-new]>=2024.8",
"transformers>=4.40",
"trl>=0.8",
"torch>=2.0",
"bitsandbytes>=0.43",
]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"ruff>=0.15.8",
]
[project.scripts]
hippofloop = "hippofloop.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/hippofloop"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]