-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
72 lines (66 loc) · 1.46 KB
/
pyproject.toml
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
[project]
name = "lczerolens"
version = "0.2.0-dev"
description = "Interpretability for LeelaChessZero networks."
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Yoann Poupart", email = "[email protected]"},
]
requires-python = ">=3.9"
dependencies = [
"datasets>=3.2.0",
"einops>=0.8.0",
"jsonlines>=4.0.0",
"nnsight>=0.3.7",
"onnx2torch>=1.5.15",
"python-chess>=1.999",
"scikit-learn>=1.6.1",
"tensordict>=0.6.2",
"typing-extensions>=4.12.2",
]
[project.optional-dependencies]
viz = [
"matplotlib>=3.10.0",
]
[dependency-groups]
dev = [
"gdown>=5.2.0",
"ipykernel>=6.29.5",
"lczero-bindings",
"nbconvert>=7.16.5",
"onnxruntime>=1.20.1",
"pre-commit>=4.0.1",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
]
demo = [
"gradio>=5.12.0",
"matplotlib>=3.10.0",
]
docs = [
"nbsphinx>=0.9.6",
"pandoc>=2.4",
"plotly>=5.24.1",
"pydata-sphinx-theme>=0.16.1",
"sphinx>=8.1.3",
"sphinx-charts>=0.2.1",
"sphinx-copybutton>=0.5.2",
"sphinx-design>=0.6.1",
]
scripts = [
"loguru>=0.7.3",
"matplotlib>=3.10.0",
"pylatex>=1.4.2",
"safetensors>=0.5.2",
"wandb>=0.19.2",
]
[build]
target-dir = "build/dist"
[tool.uv]
default-groups = ["dev", "docs"]
[tool.uv.sources]
lczero-bindings = { git = "https://github.com/LeelaChessZero/lc0.git", rev = "dfcd1c314150b93125697491bef1221841443c18" }
[tool.ruff]
line-length = 119
target-version = "py311"