llama.cpp/pyproject.toml

44 lines
1.1 KiB
TOML
Raw Normal View History

2023-03-23 09:33:06 +00:00
[tool.poetry]
name = "llama_cpp_python"
2023-05-30 07:07:36 +00:00
version = "0.1.56"
2023-03-23 09:33:06 +00:00
description = "Python bindings for the llama.cpp library"
authors = ["Andrei Betlen <abetlen@gmail.com>"]
license = "MIT"
readme = "README.md"
2023-03-23 18:57:18 +00:00
homepage = "https://github.com/abetlen/llama-cpp-python"
repository = "https://github.com/abetlen/llama-cpp-python"
2023-03-23 09:33:06 +00:00
packages = [{include = "llama_cpp"}]
include = [
"LICENSE.md",
]
[tool.poetry.dependencies]
python = "^3.8.1"
typing-extensions = "^4.6.2"
2023-05-30 07:06:57 +00:00
numpy = "^1.20.0"
uvicorn = { version = "^0.22.0", optional = true }
fastapi = { version = "^0.95.0", optional = true }
sse-starlette = { version = "^1.3.3", optional = true }
2023-03-23 09:33:06 +00:00
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
2023-03-23 18:24:08 +00:00
twine = "^4.0.2"
mkdocs = "^1.4.3"
mkdocstrings = {extras = ["python"], version = "^0.22.0"}
mkdocs-material = "^9.1.15"
pytest = "^7.3.1"
httpx = "^0.24.1"
scikit-build = "0.17.5"
2023-03-23 09:33:06 +00:00
[tool.poetry.extras]
server = ["uvicorn", "fastapi", "sse-starlette"]
2023-03-23 09:33:06 +00:00
[build-system]
2023-03-23 17:54:14 +00:00
requires = [
"setuptools>=42",
"scikit-build>=0.13",
"cmake>=3.18",
"ninja",
]
build-backend = "setuptools.build_meta"