2023-03-23 05:33:06 -04:00
|
|
|
[tool.poetry]
|
2023-04-06 21:33:54 -04:00
|
|
|
name = "llama_cpp_python"
|
2023-05-14 00:04:49 -04:00
|
|
|
version = "0.1.50"
|
2023-03-23 05:33:06 -04:00
|
|
|
description = "Python bindings for the llama.cpp library"
|
|
|
|
authors = ["Andrei Betlen <abetlen@gmail.com>"]
|
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
2023-03-23 14:57:18 -04:00
|
|
|
homepage = "https://github.com/abetlen/llama-cpp-python"
|
|
|
|
repository = "https://github.com/abetlen/llama-cpp-python"
|
2023-03-23 05:33:06 -04:00
|
|
|
packages = [{include = "llama_cpp"}]
|
|
|
|
include = [
|
|
|
|
"LICENSE.md",
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.8.1"
|
2023-03-30 06:43:31 -04:00
|
|
|
typing-extensions = "^4.5.0"
|
2023-03-23 05:33:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2023-05-05 23:25:53 +00:00
|
|
|
black = "^23.3.0"
|
2023-03-23 14:24:08 -04:00
|
|
|
twine = "^4.0.2"
|
2023-05-06 21:16:08 +00:00
|
|
|
mkdocs = "^1.4.3"
|
2023-05-07 00:16:31 +00:00
|
|
|
mkdocstrings = {extras = ["python"], version = "^0.21.2"}
|
2023-05-08 21:04:42 +00:00
|
|
|
mkdocs-material = "^9.1.11"
|
2023-05-07 00:07:39 +00:00
|
|
|
pytest = "^7.3.1"
|
2023-04-28 23:26:07 -07:00
|
|
|
httpx = "^0.24.0"
|
2023-03-23 05:33:06 -04:00
|
|
|
|
|
|
|
[build-system]
|
2023-03-23 13:54:14 -04:00
|
|
|
requires = [
|
|
|
|
"setuptools>=42",
|
|
|
|
"scikit-build>=0.13",
|
|
|
|
"cmake>=3.18",
|
|
|
|
"ninja",
|
|
|
|
]
|
|
|
|
build-backend = "setuptools.build_meta"
|