fa79484a29
Bumps [scikit-build](https://github.com/scikit-build/scikit-build) from 0.13.0 to 0.17.5. - [Release notes](https://github.com/scikit-build/scikit-build/releases) - [Changelog](https://github.com/scikit-build/scikit-build/blob/main/CHANGES.rst) - [Commits](https://github.com/scikit-build/scikit-build/compare/0.13.0...0.17.5) --- updated-dependencies: - dependency-name: scikit-build dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
42 lines
1.1 KiB
TOML
42 lines
1.1 KiB
TOML
[tool.poetry]
|
|
name = "llama_cpp_python"
|
|
version = "0.1.55"
|
|
description = "Python bindings for the llama.cpp library"
|
|
authors = ["Andrei Betlen <abetlen@gmail.com>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
homepage = "https://github.com/abetlen/llama-cpp-python"
|
|
repository = "https://github.com/abetlen/llama-cpp-python"
|
|
packages = [{include = "llama_cpp"}]
|
|
include = [
|
|
"LICENSE.md",
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8.1"
|
|
typing-extensions = "^4.5.0"
|
|
uvicorn = { version = "^0.21.1", optional = true }
|
|
fastapi = { version = "^0.95.0", optional = true }
|
|
sse-starlette = { version = "^1.3.3", optional = true }
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^23.3.0"
|
|
twine = "^4.0.2"
|
|
mkdocs = "^1.4.3"
|
|
mkdocstrings = {extras = ["python"], version = "^0.22.0"}
|
|
mkdocs-material = "^9.1.14"
|
|
pytest = "^7.3.1"
|
|
httpx = "^0.24.1"
|
|
scikit-build = "0.17.5"
|
|
|
|
[tool.poetry.extras]
|
|
server = ["uvicorn", "fastapi", "sse-starlette"]
|
|
|
|
[build-system]
|
|
requires = [
|
|
"setuptools>=42",
|
|
"scikit-build>=0.13",
|
|
"cmake>=3.18",
|
|
"ninja",
|
|
]
|
|
build-backend = "setuptools.build_meta"
|