-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.26 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
[tool.poetry]
name = "graphsignal"
version = "0.17.1"
description = "Graphsignal Tracer for Python"
authors = ["Graphsignal, Inc. <devops@graphsignal.com>"]
license = "Apache-2.0"
homepage = "https://graphsignal.com"
repository = "https://graphsignal.com"
readme = "README.md"
keywords = ["LLM observability", "LLM analytics", "Agent observability", "Agent analytics"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: System :: Monitoring",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
[tool.poetry.dependencies]
python = ">=3.9"
urllib3 = ">=1.25.3,<2.1.0"
python-dateutil = "*"
pydantic = ">2"
typing-extensions = ">4.7.1"
[tool.poetry.group.dev.dependencies]
torch = "*"
openai = "*"
tiktoken = "*"
[tool.poetry.scripts]
update-client = "tools.update_client:main"
test = "tools.run_tests:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"