-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1.02 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
44
45
46
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "mlx-quant-toolkit"
version = "0.1.0"
description = "The rationalist's loadout for intelligent mlx quantization"
readme = "README.md"
requires-python = ">=3.12.9"
license = "MIT"
license-files = ["LICENSE"]
dependencies = [
"ml-dtypes>=0.5.4",
"numpy>=2.3.5",
"pandas>=2.3.3",
"safetensors>=0.7.0",
]
[project.scripts]
mlx-quant-init = "mlx_quant_toolkit.cli:init_run_cli"
mlx-quant-collect = "mlx_quant_toolkit.cli:collect_data_cli"
mlx-quant-build-tables = "mlx_quant_toolkit.cli:build_tables_cli"
mlx-quant-build-plots = "mlx_quant_toolkit.cli:build_plots_cli"
[project.optional-dependencies]
mlx = [
"mlx>=0.30.0",
"mlx-lm>=0.28.4",
]
parquet = [
"pyarrow>=22.0.0",
]
plot = [
"matplotlib>=3.10.0",
"pyarrow>=22.0.0",
]
all = [
"mlx>=0.30.0",
"mlx-lm>=0.28.4",
"pyarrow>=22.0.0",
"matplotlib>=3.10.0",
]
[tool.setuptools]
packages = ["mlx_quant_toolkit", "mlx_quant_toolkit.scripts"]