-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 863 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 863 Bytes
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
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[project]
name = "faqbot"
version = "0.1.0"
description = "Self-hosted FAQ-Chatbot using LangChain and Azure OpenAI"
readme = "README.md"
authors = [{ name = "Michael Wagner" }]
requires-python = ">=3.10"
dependencies = [
"langchain>=0.3,<1",
"faiss-cpu>=1.9,<2",
"typer>=0.16,<1",
"langchain-community>=0.3,<1",
"langchain-openai>=0.3,<1",
"python-dotenv>=1.1,<2",
"numpy>=2.0,<3",
"pytest<8",
"pytest-rich>=0.2,<2",
"langfuse>=3.0,<4",
]
[tool.hatch.build.targets.sdist]
include = ["src/**", "faq.json"]
[tool.hatch.build.targets.wheel]
packages = ["src/faqbot"]
[tool.pytest.ini_options]
addopts = "--rich -v"
filterwarnings = [
"ignore::DeprecationWarning:faiss.loader",
"ignore::DeprecationWarning:frozen importlib._bootstrap",
]