-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 958 Bytes
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 958 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[build-system]
requires = [
"setuptools>=68.0",
"wheel",
"cmake>=3.16",
"pybind11>=2.12",
]
build-backend = "setuptools.build_meta"
[project]
name = "t81lib"
version = "0.1.0"
description = "Balanced ternary arithmetic primitives for AI research"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [
{ name = "The t81lib Contributors", email = "t81lib@example.com" },
]
dependencies = [
"numpy>=1.25",
"matplotlib>=3.7",
]
[project.urls]
Homepage = "https://github.com/t81dev/t81lib"
[project.optional-dependencies]
torch = [
"torch>=2.0",
"transformers>=4.34",
"safetensors>=0.3",
"accelerate>=0.20",
"datasets>=2.13",
]
dev = ["pytest>=9.0", "pybind11>=2.12", "cibuildwheel>=2.15"]
[project.scripts]
t81 = "t81.cli:main"
t81-convert = "t81.cli:main_convert"
t81-qat = "t81.scripts.t81_qat:main"
t81-gguf = "t81.cli:main_gguf"
t81-dequant = "t81.scripts.t81_dequant:main"