source version in setup.py
This commit is contained in:
parent
da0fdafc32
commit
4e08fc03bd
1 changed files with 3 additions and 1 deletions
4
setup.py
4
setup.py
|
@ -5,12 +5,14 @@ from pathlib import Path
|
||||||
this_directory = Path(__file__).parent
|
this_directory = Path(__file__).parent
|
||||||
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
|
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
|
||||||
|
|
||||||
|
exec(open('llama_cpp/version.py').read())
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="llama_cpp_python",
|
name="llama_cpp_python",
|
||||||
description="A Python wrapper for llama.cpp",
|
description="A Python wrapper for llama.cpp",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
version="0.1.83",
|
version=__version__,
|
||||||
author="Andrei Betlen",
|
author="Andrei Betlen",
|
||||||
author_email="abetlen@gmail.com",
|
author_email="abetlen@gmail.com",
|
||||||
license="MIT",
|
license="MIT",
|
||||||
|
|
Loading…
Reference in a new issue