-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
51 lines (44 loc) · 1.1 KB
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
[project]
name = "customer-service-ai"
version = "1.0.0"
description = "AI-powered customer service application with guardrails"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.5.0",
"langchain>=0.1.0",
"langchain-ollama>=0.1.0",
"httpx>=0.25.0",
"numpy>=1.26.0",
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"arize-phoenix>=4.0.0",
"openinference-instrumentation-langchain>=0.1.0",
"opentelemetry-sdk>=1.20.0",
"opentelemetry-exporter-otlp>=1.20.0",
]
[project.optional-dependencies]
dev = [
"ruff>=0.1.6",
"mypy>=1.7.0",
]
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["app*", "evaluation*", "tests*"]
exclude = ["data*"]
[tool.setuptools.package-data]
"*" = ["*.json"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
addopts = "-v --tb=short"
[tool.ruff]
line-length = 100
target-version = "py311"