diff --git a/publish.sh b/publish.sh new file mode 100644 index 0000000..8e6fc43 --- /dev/null +++ b/publish.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +rm -rf dist +python setup.py sdist bdist_wheel +twine upload dist/* diff --git a/requirements.txt b/requirements.txt index a97c059..f6fd7a4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ backoff>=2.2.1 -langchain~=0.3.0 -langchain-community~=0.3.0 -langchain-openai~=0.2.0 +langchain~=0.3.19 +langchain-community~=0.3.18 +langchain-openai~=0.3.7 clickhouse-connect>=0.7 tiktoken>=0.7.0 \ No newline at end of file diff --git a/setup.py b/setup.py index 07d689d..736c203 100644 --- a/setup.py +++ b/setup.py @@ -6,21 +6,21 @@ long_description = (this_directory / "README.md").read_text() setup( - name="myscale-telemetry", - version="0.3.2", + name="originhub-myscale-telemetry", + version="0.3.3", description="Open-source observability for your LLM application.", long_description=long_description, long_description_content_type="text/markdown", - author="Xu Jing", - author_email="xuj@myscale.com", - url="https://github.com/myscale/myscale-telemetry", + author="Hao Lou", + author_email="louh@originhub.tech", + url="https://github.com/OriginHubAI/myscale-telemetry", packages=find_packages(), install_requires=[ "backoff>=2.2.1", - "langchain~=0.3.0", - "langchain-community~=0.3.0", + "langchain~=0.3.19", + "langchain-community~=0.3.18", "clickhouse-connect>=0.7", - "langchain-openai~=0.2.0", + "langchain-openai~=0.3.7", "tiktoken>=0.7.0", ], classifiers=[