-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (29 loc) · 955 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from pathlib import Path
from setuptools import setup, find_packages
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="myscale-telemetry",
version="0.3.2",
description="Open-source observability for your LLM application.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Xu Jing",
author_email="[email protected]",
url="https://github.com/myscale/myscale-telemetry",
packages=find_packages(),
install_requires=[
"backoff>=2.2.1",
"langchain~=0.3.0",
"langchain-community~=0.3.0",
"clickhouse-connect>=0.7",
"langchain-openai~=0.2.0",
"tiktoken>=0.7.0",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.10",
)