forked from Scale3-Labs/langtrace-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
93 lines (79 loc) · 2.44 KB
/
pyproject.toml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# pyproject.toml
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "langtrace-python-sdk"
dynamic = ["version"]
description = "Python SDK for LangTrace"
readme = "README.md"
authors = [{ name = "Scale3 Labs", email = "engineering@scale3labs.com" }]
license = "Apache-2.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
'trace-attributes==7.1.0',
'opentelemetry-api>=1.25.0',
'opentelemetry-sdk>=1.25.0',
'opentelemetry-instrumentation>=0.47b0',
'opentelemetry-instrumentation-sqlalchemy>=0.46b0',
'opentelemetry-exporter-otlp-proto-http>=1.25.0',
'opentelemetry-exporter-otlp-proto-grpc>=1.25.0',
'tiktoken>=0.1.1',
'colorama>=0.4.6',
'sqlalchemy',
'fsspec>=2024.6.0',
"transformers>=4.11.3",
"sentry-sdk>=2.14.0",
"ujson>=5.10.0",
]
requires-python = ">=3.9"
[project.optional-dependencies]
dev = [
"openai==1.45.0",
"anthropic",
"chromadb",
"qdrant-client",
"python-dotenv",
"pinecone-client",
"langchain",
"langchain-community",
"langchain-openai",
"litellm==1.48.7",
"chromadb",
"cohere",
"qdrant_client",
"weaviate-client",
"ollama",
"groq",
"google-generativeai",
"google-cloud-aiplatform",
"mistralai",
"boto3",
"embedchain",
"setuptools",
]
test = ["pytest", "pytest-vcr", "pytest-asyncio"]
[project.urls]
Homepage = "https://github.com/Scale3-Labs/langtrace-python-sdk"
[tool.hatch.version]
path = "src/langtrace_python_sdk/version.py"
[tool.hatch.build.targets.sdist]
include = ["/src"]
[tool.hatch.build.targets.wheel]
packages = ["src/langtrace_python_sdk", "src/examples", "src/tests"]
[project.entry-points."fsspec.specs"]
langtracefs = "langtrace_python_sdk:LangTraceFileSystem"
# [tool.semantic_release]
# version_variable = "pyproject.toml:version" # version location
# branch = "development" # branch to make releases of
# changelog_file = "CHANGELOG.md" # changelog file
# build_command = "poetry build" # build dists
# dist_path = "dist/" # where to put dists
# upload_to_release = true # auto-create GitHub release
# upload_to_pypi = false # don't auto-upload to PyPI
# remove_dist = false # don't remove dists
# patch_without_tag = true # patch release by default