-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (86 loc) · 2.12 KB
/
pyproject.toml
File metadata and controls
94 lines (86 loc) · 2.12 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
82
83
84
85
86
87
88
89
90
91
92
93
94
[project]
name = "tdhook"
version = "0.1.3"
description = "Interpretability with tensordict and torch hooks."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{name = "Yoann Poupart", email = "yoann.poupart@ens-lyon.org"},
]
requires-python = ">=3.10"
dependencies = [
"tensordict>=0.10",
"torch>=2.7.1",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
homepage = "https://tdhook.readthedocs.io/"
documentation = "https://tdhook.readthedocs.io/"
source = "https://github.com/Xmaster6y/tdhook"
issues = "https://github.com/Xmaster6y/tdhook/issues"
releasenotes = "https://github.com/Xmaster6y/tdhook/releases"
[dependency-groups]
dev = [
"captum>=0.8.0",
"pre-commit>=4.0.1",
"pytest>=8.3.5",
"pytest-cov>=6.1.1",
"nnsight>=0.4.11",
"zennit>=0.5.1",
"scikit-learn>=1.7.1",
]
docs = [
"ipywidgets>=8.0.0",
"nbsphinx>=0.9.6",
"pandoc>=2.4",
"plotly>=5.24.1",
"pydata-sphinx-theme>=0.16.1",
"sphinx>=8.1.3",
"sphinx-autoapi>=3.6.0",
"sphinx-charts>=0.2.1",
"sphinx-copybutton>=0.5.2",
"sphinx-design>=0.6.1",
"sphinx-llm>=0.3.0",
"sphinxcontrib-bibtex>=2.6.5",
]
scripts = [
"loguru>=0.7.3",
"nnsight>=0.4.11",
"matplotlib>=3.8.0",
"numpy>=1.24.0",
"pyside6>=6.9.1",
"transformer-lens>=2.15.4",
"zennit>=0.5.1",
"captum>=0.8.0",
"lczerolens",
"scikit-learn>=1.7.1",
"torchrl>=0.11.0",
"gymnasium[mujoco]>=1.2.0",
"seaborn>=0.13.2",
"datasets>=4.0.0",
"timm>=1.0.19",
]
notebooks = [
"ipykernel>=6.29.5",
"ipywidgets>=8.0.0",
]
[build]
target-dir = "build/dist"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.uv]
default-groups = ["dev", "docs", "scripts", "notebooks"]
[tool.uv.sources]
lczerolens = { git = "https://github.com/Xmaster6y/lczerolens" }
[tool.ruff]
line-length = 119
target-version = "py311"