forked from ejnnr/cupbearer
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
49 lines (42 loc) · 1.1 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "cupbearer"
version = "0.0.1"
authors = [{ name = "Erik Jenner", email = "[email protected]" }]
description = "A library for mechanistic anomaly detection"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy~=1.24.2",
"scikit-learn~=1.2.2",
"Pillow~=9.4.0",
"torch~=2.0.0",
"torchvision~=0.15.1",
"torchattacks~=3.5.1",
"lightning~=2.1.0",
"torchmetrics~=1.2.0",
"transformer_lens~=1.14.0",
"tensorboard",
"datasets",
"tqdm",
"loguru",
"matplotlib",
]
requires-python = ">=3.10"
[project.optional-dependencies]
dev = ["pytest", "pre-commit", "ipykernel"]
wandb = ["wandb"]
[project.urls]
"Homepage" = "https://github.com/ejnnr/cupbearer"
"Bug Tracker" = "https://github.com/ejnnr/cupbearer/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
select = ["E", "W", "F", "I"]
ignore-init-module-imports = true