-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (23 loc) · 754 Bytes
/
pyproject.toml
File metadata and controls
26 lines (23 loc) · 754 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
[build-system]
requires = ["setuptools>=77.0", "wheel", "torch>=2.10", "ninja"]
build-backend = "setuptools.build_meta"
[project]
name = "svdquant-kernels"
version = "0.0.0"
description = "Cross-architecture CUDA kernels for SVDQuant (W4A4 with low-rank correction)"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [{ name = "ultranationalism", email = "www913363043@gmail.com" }]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: C++",
"Environment :: GPU :: NVIDIA CUDA",
]
[tool.setuptools.packages.find]
include = ["svdquant_kernels*"]
[tool.ruff]
line-length = 100
target-version = "py310"