-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (52 loc) · 1.3 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
[project]
name = "mlsae"
version = "0.2.0"
description = "Multi-Layer Sparse Autoencoders"
authors = [{ name = "Tim Lawson", email = "hello@timlawson.dev" }]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"datasets>=3.1.0",
"diptest>=0.8.2",
"einops>=0.8.0",
"fastapi>=0.115.5",
"huggingface-hub[cli]>=0.26.2",
"jaxtyping>=0.2.34",
"lightning>=2.4.0",
"loguru>=0.7.2",
"matplotlib>=3.9.2",
"natsort>=8.4.0",
"numpy>=2.1.3",
"orjson>=3.10.11",
"pandas>=2.2.3",
"pydantic>=2.9.2",
"pytest>=8.3.3",
"ruff>=0.7.3",
"safetensors>=0.4.5",
"scipy>=1.14.1",
"simple-parsing>=0.1.6",
"torch>=2.5.1",
"torchmetrics>=1.6.0",
"tqdm>=4.67.0",
"transformers>=4.46.2",
"triton>=3.1.0",
"tuned-lens>=0.2.0",
"uvicorn[standard]>=0.32.0",
"wandb>=0.18.7",
"zstandard>=0.23.0",
]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q --import-mode=importlib -m='not slow'"
markers = ["slow: mark test as slow to run"]
testpaths = ["mlsae"]
[tool.ruff]
extend-include = ["*.ipynb"]
target-version = "py312"
[tool.ruff.lint]
ignore = ["F722", "F821", "UP037"]
select = ["E", "F", "UP", "B", "SIM", "I"]
unfixable = ["F401"]
[tool.setuptools.packages.find]
include = ["mlsae", "figures"]
namespaces = false