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