File size: 491 Bytes
85b17bd
 
 
 
 
 
 
 
f6158c7
85b17bd
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"

[project]
name = "math-jlens"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = ["torch>=2.6", "transformers>=4.53", "tqdm>=4.67", "pyarrow>=21"]

[project.scripts]
fit-jacobians = "math_jlens.cli:main"
merge-jacobians = "math_jlens.merge:main"
explore-jlens = "math_jlens.explore:main"

[tool.setuptools.packages.find]
include = ["math_jlens*"]

[tool.pytest.ini_options]
testpaths = ["tests"]