llama.cpp/pyproject.toml

37 lines
826 B
TOML
Raw Normal View History

2023-03-23 09:33:06 +00:00
[tool.poetry]
name = "llama_cpp_python"
2023-05-05 01:59:37 +00:00
version = "0.1.43"
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.1.0"
2023-03-23 18:24:08 +00:00
twine = "^4.0.2"
2023-03-24 22:57:59 +00:00
mkdocs = "^1.4.2"
mkdocstrings = {extras = ["python"], version = "^0.20.0"}
mkdocs-material = "^9.1.4"
2023-04-05 07:23:15 +00:00
pytest = "^7.2.2"
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"