-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
52 lines (48 loc) · 1.05 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
[project]
name = "debug"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"accelerate>=1.6.0",
"bitsandbytes>=0.45.5",
"click>=8.1.8",
"datasets>=3.5.0",
"deepseek-tokenizer>=0.1.3",
"einops>=0.8.1",
"fastai>=2.7.19",
"gh>=0.0.4",
"gradio>=5.25.2",
"huggingface-hub[cli]>=0.30.2",
"ipykernel>=6.29.5",
"ipywidgets>=8.1.6",
"jaxtyping>=0.3.2",
"jupyter>=1.1.1",
"jupyterlab>=4.4.0",
"lovely-tensors>=0.1.18",
"matplotlib>=3.10.1",
"nnsight>=0.4.5",
"numpy>=2.2.4",
"pytest>=8.4.0",
"ruff>=0.11.5",
"seaborn>=0.13.2",
"sentencepiece>=0.2.0",
"torch>=2.6.0",
"torchtyping>=0.1.5",
"transformers>=4.51.3",
"typeguard>=2.13.3",
"vllm>=0.8.4",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.setuptools.packages.find]
where = ["src"]
include = ["debug", "debug.*"]
[tool.uv.sources]
debug = { workspace = true }
[dependency-groups]
dev = [
"debug",
]