We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da0fdaf commit 4e08fc0Copy full SHA for 4e08fc0
setup.py
@@ -5,12 +5,14 @@
5
this_directory = Path(__file__).parent
6
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
7
8
+exec(open('llama_cpp/version.py').read())
9
+
10
setup(
11
name="llama_cpp_python",
12
description="A Python wrapper for llama.cpp",
13
long_description=long_description,
14
long_description_content_type="text/markdown",
- version="0.1.83",
15
+ version=__version__,
16
author="Andrei Betlen",
17
author_email="abetlen@gmail.com",
18
license="MIT",
0 commit comments