-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
68 lines (59 loc) · 1.33 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
[project]
name = "interprot"
version = "0.1.0"
description = "Mechanistic interpretability tools for protein language models"
authors = [
{name = "Etowah Adams", email = "[email protected]"},
{name = "Liam Bai", email = "[email protected]"}
]
dependencies = [
"click",
"transformers",
"torch>=2.2.0",
"polars",
"numpy<2",
"scikit-learn",
"tqdm",
"pandas",
"scipy"
]
requires-python = ">=3.10"
readme = "README.md"
[tool.setuptools]
packages = [
"interprot",
"interprot.autointerp",
"interprot.oned_probe",
"interprot.make_viz_files",
]
[project.scripts]
autointerp = "interprot.autointerp.__main__:cli"
oned_probe = "interprot.oned_probe.__main__:cli"
make_viz_files = "interprot.make_viz_files.__main__:make_viz_files"
[project.urls]
Homepage = "https://github.com/etowahadams/interprot"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[project.optional-dependencies]
dev = [
"pytest",
"hatch",
]
[tool.hatch.build.targets.wheel]
packages = [
"interprot",
"interprot.autointerp",
"interprot.oned_probe"
]