-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (69 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
75 lines (69 loc) · 1.35 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[project]
name = "paroquant"
version = "0.1.13"
requires-python = ">=3.11"
description = "ParoQuant — Pairwise Rotation Quantization for LLMs"
readme = "README.md"
license = "MIT"
authors = [{ name = "Z Lab" }]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"rich",
]
[project.urls]
Homepage = "https://paroquant.z-lab.ai"
Paper = "https://arxiv.org/abs/2511.10645"
Models = "https://huggingface.co/collections/z-lab/paroquant"
[project.optional-dependencies]
transformers = [
"torch>=2.8",
"torchvision",
"transformers>=4.55",
"autoawq",
"ninja",
]
vllm = [
"vllm>=0.19.0",
"accelerate",
]
mlx = [
"mlx",
"mlx-lm",
"mlx-vlm",
"torchvision",
]
optim = [
"paroquant[transformers]",
"datasets",
"simple_parsing",
"tqdm",
"wandb",
]
eval = [
"lm_eval",
"zstandard",
]
agent = [
"qwen-agent",
"mcp",
"soundfile",
"uv",
]
dev = [
"pytest",
"pre-commit",
]
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["paroquant*"]
[tool.setuptools.package-data]
"paroquant.kernels.cuda" = ["*.cu", "*.cpp", "*.cuh"]
"paroquant.kernels.metal" = ["*.metal"]
[tool.black]
line-length = 120
target-version = ["py311"]