feat: Store package version in py file (#254)
This commit is contained in:
1
embedchain/version.py
Normal file
1
embedchain/version.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
__version__ = "0.0.21"
|
||||||
5
setup.py
5
setup.py
@@ -1,11 +1,14 @@
|
|||||||
import setuptools
|
import setuptools
|
||||||
|
|
||||||
|
import embedchain.version
|
||||||
|
|
||||||
|
|
||||||
with open("README.md", "r", encoding="utf-8") as fh:
|
with open("README.md", "r", encoding="utf-8") as fh:
|
||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="embedchain",
|
name="embedchain",
|
||||||
version="0.0.21",
|
version=embedchain.version.__version__,
|
||||||
author="Taranjeet Singh",
|
author="Taranjeet Singh",
|
||||||
author_email="reachtotj@gmail.com",
|
author_email="reachtotj@gmail.com",
|
||||||
description="embedchain is a framework to easily create LLM powered bots over any dataset", # noqa:E501
|
description="embedchain is a framework to easily create LLM powered bots over any dataset", # noqa:E501
|
||||||
|
|||||||
Reference in New Issue
Block a user