llama.cpp/pyproject.toml

30 lines
633 B
TOML
Raw Normal View History

2023-03-23 09:33:06 +00:00
[tool.poetry]
name = "llama_cpp"
version = "0.1.0"
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"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
[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"