66c13082f5
Bumps [mkdocs-material](https://github.com/squidfunk/mkdocs-material) from 9.2.5 to 9.2.8. - [Release notes](https://github.com/squidfunk/mkdocs-material/releases) - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG) - [Commits](https://github.com/squidfunk/mkdocs-material/compare/9.2.5...9.2.8) --- updated-dependencies: - dependency-name: mkdocs-material dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
48 lines
No EOL
1.2 KiB
TOML
48 lines
No EOL
1.2 KiB
TOML
[tool.poetry]
|
|
name = "llama_cpp_python"
|
|
version = "0.1.83"
|
|
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.7.1"
|
|
numpy = "^1.24.4"
|
|
diskcache = "^5.6.3"
|
|
uvicorn = { version = "^0.23.2", optional = true }
|
|
fastapi = { version = ">=0.100.0", optional = true }
|
|
sse-starlette = { version = ">=1.6.1", optional = true }
|
|
pydantic-settings = { version = ">=2.0.1", optional = true }
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^23.7.0"
|
|
twine = "^4.0.2"
|
|
mkdocs = "^1.5.2"
|
|
mkdocstrings = {extras = ["python"], version = "^0.22.0"}
|
|
mkdocs-material = "^9.2.8"
|
|
pytest = "^7.4.2"
|
|
httpx = "^0.24.1"
|
|
scikit-build = "0.17.6"
|
|
|
|
[tool.poetry.extras]
|
|
server = ["uvicorn", "fastapi", "pydantic-settings", "sse-starlette"]
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = "--ignore=vendor"
|
|
|
|
[build-system]
|
|
requires = [
|
|
"setuptools>=42",
|
|
"scikit-build>=0.13",
|
|
"cmake>=3.18",
|
|
"ninja",
|
|
]
|
|
build-backend = "setuptools.build_meta" |