Initial pypi release

This commit is contained in:
Andrei Betlen
2023-03-23 14:24:08 -04:00
parent 465238b179
commit 93f074a4fa
3 changed files with 657 additions and 3 deletions

View File

@@ -1,11 +1,11 @@
from skbuild import setup
setup(
name="llama_cpp",
name="llama_cpp_python",
description="A Python wrapper for llama.cpp",
version="0.1.1",
author="Andrei Betlen",
author_email="abetlen@gmail.com",
license="MIT",
packages=['llama_cpp'],
packages=["llama_cpp"]
)