mirror of
https://github.com/abetlen/llama-cpp-python.git
synced 2023-09-07 17:34:22 +03:00
Use setup.py install Upgrade version of setuptools Revert to develop Use setup.py build and pip install Just use pip install Use correct name in pyproject.toml Make pip install verbose
36 lines
808 B
TOML
36 lines
808 B
TOML
[tool.poetry]
|
|
name = "llama_cpp_python"
|
|
version = "0.1.24"
|
|
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"
|
|
typing-extensions = "^4.5.0"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^23.1.0"
|
|
twine = "^4.0.2"
|
|
mkdocs = "^1.4.2"
|
|
mkdocstrings = {extras = ["python"], version = "^0.20.0"}
|
|
mkdocs-material = "^9.1.4"
|
|
pytest = "^7.2.2"
|
|
|
|
[build-system]
|
|
requires = [
|
|
"setuptools>=42",
|
|
"scikit-build>=0.13",
|
|
"cmake>=3.18",
|
|
"ninja",
|
|
]
|
|
build-backend = "setuptools.build_meta"
|