forked from ansilh/leapfrogai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (22 loc) · 724 Bytes
/
pyproject.toml
File metadata and controls
31 lines (22 loc) · 724 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
[project]
name = "lfai-llama-cpp-python"
description = "A LeapfrogAI API-compatible llama-cpp-python wrapper for quantized and un-quantized model inferencing on CPU infrastructures."
# x-release-please-start-version
version = "0.14.0"
# x-release-please-end
dependencies = ["llama-cpp-python == 0.2.72", "cowabunga-sdk"]
requires-python = "~=3.11"
readme = "README.md"
[project.optional-dependencies]
dev = ["huggingface_hub[cli,hf_transfer] ==0.25.1"]
[tool.pip-tools]
generate-hashes = true
[tool.setuptools]
py-modules = ["main"]
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
[tool.ruff]
target-version = "py311"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"