feat: Store package version in py file (#254)

This commit is contained in:
Deshraj Yadav
2023-07-13 22:55:18 -07:00
committed by GitHub
parent 8f42ced9b5
commit b41fa6fdc4
2 changed files with 5 additions and 1 deletions

1
embedchain/version.py Normal file
View File

@@ -0,0 +1 @@
__version__ = "0.0.21"

View File

@@ -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