-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (58 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
66 lines (58 loc) · 1.65 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[project]
name = "emush-rag"
version = "1.8.2"
description = "A RAG-based API to answer questions about eMush."
readme = "README.md"
requires-python = ">=3.13,<3.14"
license = "AGPL-3.0-or-later"
authors = [
{name = "Charles-Meldhine Madi Mnemoi", email = "charlesmeldhine.madimnemoi@gmail.com"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"fastapi[standard]>=0.135.0",
"chromadb>=1.5.2",
"openai>=2.24.0",
"opentelemetry-instrumentation-fastapi>=0.56b0",
"opentelemetry-instrumentation-openai>=0.52.6",
"opentelemetry-exporter-otlp>=1.39.1",
"langchain-text-splitters>=1.1.1",
]
[project.urls]
"Bug Tracker" = "https://github.com/cmnemoi/emush_rag/issues"
Changelog = "https://github.com/cmnemoi/emush_rag/blob/main/CHANGELOG.md"
Homepage = "https://github.com/cmnemoi/emush_rag/"
Repository = "https://github.com/cmnemoi/emush_rag/"
[project.scripts]
index-documents = "emush_rag.cli.index_documents:main"
[dependency-groups]
dev = [
"pytest-watcher>=0.6.3",
"python-semantic-release>=10.5.3",
"typer>=0.23,<0.24",
]
lint = [
"mypy>=1.19.1",
"pytest-mypy>=1.0.1",
"ruff>=0.15.4",
"types-tqdm>=4.67.3.20260205",
]
test = [
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"pytest-asyncio>=1.3.0",
]
[tool.pytest.ini_options]
testpaths = ["tests/"]
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["emush_rag"]