-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.09 KB
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
[project]
name = "mlxlmprobe"
version = "0.1.5"
description = "Visual probing and interpretability tool for MLX language models"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [{name = "scouzi1966"}]
keywords = ["mlx", "llm", "interpretability", "streamlit", "apple-silicon", "moe"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: MacOS X",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"mlx>=0.5.0",
"mlx-lm>=0.10.0",
"streamlit>=1.28.0",
"plotly>=5.18.0",
"pandas>=2.0.0",
"numpy>=1.24.0",
"scikit-learn>=1.3.0",
"huggingface-hub>=0.20.0",
"fpdf2>=2.7.0",
]
[project.scripts]
mlxlmprobe = "mlxlmprobe:main"
[project.urls]
Homepage = "https://github.com/scouzi1966/MLXLMProbe"
Repository = "https://github.com/scouzi1966/MLXLMProbe"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["mlxlmprobe.py"]