-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 860 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (34 loc) · 860 Bytes
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
[project]
name = "intermol"
version = "1.0.0"
description = "A mechanistic interpretability toolbox for chemical language models"
authors = [{ name = "Christian Kenneth", email = "kennethasikinnn@gmail.com" }]
dependencies = [
"h5py>=3.11",
"numba",
"numpy>=2",
"polars",
"pytorch-lightning",
"rdkit>=2022.09.1",
"scikit-learn",
"scipy",
"torch>=2.2",
"tqdm",
"transformers<5"
]
requires-python = ">=3.10"
[project.urls]
Repository = "https://github.com/ckennetha/intermol"
[project.scripts]
run-eval-concepts = "scripts.run_eval_concepts:main"
run-precomp-acts = "scripts.run_precomp_acts:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 88
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "W"]
[tool.hatch.build.targets.wheel]
packages = ["intermol", "scripts"]