-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
35 lines (32 loc) · 1.03 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "apiq"
version = "0.1.0"
description = "An efficient algorithm for quantizing and finetuning LLMs in low-bit format, like 2, 3 and 4 bits."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"datasets>=2.0.0","einops","jsonlines","numexpr",
"openai>=0.6.4","omegaconf>=2.2","peft>=0.11.1",
"pybind11>=2.6.2","pycountry","pytablewriter",
"rouge-score>=0.0.4","sacrebleu==1.5.0",
"scikit-learn>=0.24.1","sqlitedict",
"tqdm-multiprocess","zstandard",
"accelerate", "sentencepiece", "tokenizers>=0.12.1",
"torch>=2.0.0", "torchvision",
"transformers>=4.31.0",
"evaluate>=0.4.2",
"texttable",
"toml", "attributedict",
"protobuf"
]
[tool.setuptools.packages.find]
exclude = ["results*", "scripts*", "examples*"]
[tool.wheel]
exclude = ["results*", "scripts*", "examples*"]