llama.cpp/pyproject.toml

37 lines
827 B
TOML
Raw Normal View History

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