89f9e435ba
Bumps [pytest](https://github.com/pytest-dev/pytest) from 7.3.2 to 7.4.0. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/7.3.2...7.4.0) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
44 lines
No EOL
1.1 KiB
TOML
44 lines
No EOL
1.1 KiB
TOML
[tool.poetry]
|
|
name = "llama_cpp_python"
|
|
version = "0.1.66"
|
|
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.6.3"
|
|
numpy = "^1.24.4"
|
|
diskcache = "^5.6.1"
|
|
uvicorn = { version = "^0.22.0", optional = true }
|
|
fastapi = { version = "^0.98.0", optional = true }
|
|
sse-starlette = { version = "^1.6.1", 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.17"
|
|
pytest = "^7.4.0"
|
|
httpx = "^0.24.1"
|
|
scikit-build = "0.17.6"
|
|
|
|
[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" |