add version

This commit is contained in:
makaveli10
2023-10-13 16:13:49 +08:00
parent 1f411d56b8
commit 84122de339
2 changed files with 4 additions and 1 deletions
+3 -1
View File
@@ -1,5 +1,7 @@
import pathlib
from setuptools import find_packages, setup
from mypackage.__version__ import __version__
# The directory containing this file
HERE = pathlib.Path(__file__).parent
@@ -9,7 +11,7 @@ README = (HERE / "README.md").read_text()
# This call to setup() does all the work
setup(name="whisper-live",
version="0.0.6",
version=__version__,
description="A nearly-live implementation of OpenAI's Whisper.",
long_description=README,
long_description_content_type="text/markdown",
+1
View File
@@ -0,0 +1 @@
__version__="0.0.7"