Browse Source

bug: Fix import issue in setup (#275)

Taranjeet Singh 2 years ago
parent
commit
2d6e860175
1 changed files with 1 additions and 3 deletions
  1. 1 3
      setup.py

+ 1 - 3
setup.py

@@ -1,14 +1,12 @@
 import setuptools
 
-import embedchain.version
-
 
 with open("README.md", "r", encoding="utf-8") as fh:
     long_description = fh.read()
 
 setuptools.setup(
     name="embedchain",
-    version=embedchain.version.__version__,
+    version="0.0.22",
     author="Taranjeet Singh",
     author_email="reachtotj@gmail.com",
     description="embedchain is a framework to easily create LLM powered bots over any dataset",  # noqa:E501