forked from uptrain-ai/uptrain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (57 loc) · 1.6 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
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "uptrain"
version = "0.6.13"
description = "UpTrain - tool to evaluate LLM applications on aspects like factual accuracy, response quality, retrieval quality, tonality, etc."
readme = "README.md"
maintainers = [{ name = "UpTrain AI Team", email = "[email protected]" }]
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
keywords = ["uptrain", "ai", "LLM", "evaluation", "hallucinations", "observability", "response quality"]
dependencies = [
"pydantic",
"pydantic-settings",
"loguru",
"lazy_loader",
"networkx",
"polars>=0.18",
"pandas",
"numpy>=1.23.0",
"httpx>=0.24.1",
"plotly>=5.0.0",
"aiolimiter>=1.1",
"openai>=1.6.1",
"fsspec",
"litellm",
"pyyaml",
"json5",
"python-docx",
"pymupdf",
"faiss-cpu",
]
[project.urls]
Homepage = "https://uptrain.ai"
Repository = "https://github.com/uptrain-ai/uptrain"
[project.scripts]
uptrain-add = "uptrain.cli:main"
[project.optional-dependencies]
# Optional dependencies are installed using the uptrain-cli
test = [
"pytest>=7.0"
]
[tools.setuptools]
packages = ["uptrain"]
include-package-data = true
[tool.setuptools.package-data]
"*" = ["*.pyi"]
#[tool.setuptools.packages.find]
#include = ["uptrain"]