llama.cpp/pyproject.toml

37 lines
826 B
TOML
Raw Normal View History

2023-03-23 05:33:06 -04:00
[tool.poetry]
name = "llama_cpp_python"
2023-04-28 15:33:08 -04:00
version = "0.1.39"
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]
black = "^23.1.0"
2023-03-23 14:24:08 -04:00
twine = "^4.0.2"
2023-03-24 18:57:59 -04:00
mkdocs = "^1.4.2"
mkdocstrings = {extras = ["python"], version = "^0.20.0"}
mkdocs-material = "^9.1.4"
2023-04-05 03:23:15 -04:00
pytest = "^7.2.2"
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"