From be0403da98b7c035c1942e05852b3583463f0241 Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Fri, 9 Jun 2023 11:09:32 -0400 Subject: [PATCH] Add missing poetry sections to pyproject.toml --- pyproject.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 2946143..f10b0cc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,6 +43,12 @@ server = [ ] test = ["pytest", "httpx"] +[tool.poetry] +name = "llama_cpp_python" +version = "0.1.59" +description = "Python bindings for the llama.cpp library" +authors = ["Andrei Betlen "] + [tool.poetry.dependencies] python = "^3.8.1" typing-extensions = "^4.6.3"