-
Notifications
You must be signed in to change notification settings - Fork 28
/
pyproject.toml
48 lines (40 loc) · 1.36 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
36
37
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["scikit-build-core>=0.2.1", "pybind11>2.10"]
build-backend = "scikit_build_core.build"
[project]
name = "llamacpp"
version = "0.1.15"
description = "Python bindings for @ggerganov's llama.cpp"
authors = [
{name = "Thomas Antony", email= "[email protected]"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
homepage = "https://github.com/thomasantony/llamacpp-python"
repository = "https://github.com/thomasantony/llamacpp-python"
[tool.scikit-build]
wheel.expand-macos-universal-tags = true
cmake.build-type = "Release"
[project.scripts]
llamacpp-convert = 'llamacpp.convert:main'
llamacpp-quantize = 'llamacpp.quantize:main'
llamacpp-cli = 'llamacpp.cli:run'
llamacpp-chat = 'llamacpp.chat:run'
[tool.cibuildwheel]
test-command = "python -c \"import llamacpp\""
# Skip Python 3.6, PyPy and 32-bit builds
skip = ["cp36-*", "pp*", "*-win32", "*-manylinux_i686", "*-musllinux_i686"]
build-verbosity = 3
test-skip = ["*_arm64", "*_universal2:arm64"]