-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (35 loc) · 923 Bytes
/
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
[tool.ruff]
line-length = 119
target-version = "py39"
[tool.poetry]
name = "lczero-planning"
version = "0.1.0"
description = "Interpreting planning in LeelaChessZero networks."
readme = "README.md"
license = "MIT"
authors = [
"Yoann Poupart <[email protected]>",
]
package-mode = false
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[build-system]
requires = ["poetry-core>=1.8.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = "^3.9"
datasets = "^2.19.0"
loguru = "^0.7.2"
lczerolens = {git = "https://github.com/Xmaster6y/lczerolens", rev = "patching"}
wandb = "^0.16.6"
pydantic = "^2.7.1"
nnsight = {git = "https://github.com/Xmaster6y/nnsight", rev = "modules"}
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pre-commit = "*"
[tool.poetry.group.demo]
optional = true
[tool.poetry.group.demo.dependencies]
gradio = "^4.29.0"