diff --git a/embedchain/version.py b/embedchain/version.py new file mode 100644 index 00000000..c35625a5 --- /dev/null +++ b/embedchain/version.py @@ -0,0 +1 @@ +__version__ = "0.0.21" diff --git a/setup.py b/setup.py index cab69f75..686550b0 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,14 @@ import setuptools +import embedchain.version + + with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() setuptools.setup( name="embedchain", - version="0.0.21", + version=embedchain.version.__version__, author="Taranjeet Singh", author_email="reachtotj@gmail.com", description="embedchain is a framework to easily create LLM powered bots over any dataset", # noqa:E501