-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 1.11 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bitlinear-pytorch"
version = "0.5.0"
description = "Implementation of the BitLinear layer from: The Era of 1-bit LLMs: All Large Language Models are in 1.58 Bits"
dependencies = [ "torch>=1.10.0" ]
readme = "README.md"
authors = [
{name = "Ingur Veken", email = "ingurv99@gmail.com"},
{name = "Niels Rouws", email = "nrouws@gmail.com"}
]
license = {file = "LICENSE"}
keywords = ["pytorch", "bitlinear", "bitnet", "quantization", "linear", "layer", "ternary", "binary", "quantized", "quantized weights"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
]
[project.urls]
"Homepage" = "https://github.com/ingur/bitlinear-pytorch"
"Issues" = "https://github.com/ingur/bitlinear-pytorch/issues"
[project.optional-dependencies]
test = ["pytest", "pytest-runner"]
[tool.setuptools.packages.find]
include = ["bitlinear_pytorch"]
exclude = ["tests", "examples"]