-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 867 Bytes
/
pyproject.toml
File metadata and controls
39 lines (32 loc) · 867 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "archive-rag"
version = "0.1.0"
description = "Archive Meeting Retrieval & Grounded Interpretation RAG"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"sentence-transformers>=2.2.0",
"faiss-cpu>=1.7.4",
"transformers>=4.30.0",
"typer>=0.9.0",
"structlog>=23.1.0",
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"gensim>=4.3.0",
"spacy>=3.6.0",
"rapidfuzz>=3.0.0",
"pydantic>=2.0.0",
"python-dateutil>=2.8.0",
"requests>=2.31.0",
"openai>=1.0.0",
"python-dotenv>=1.0.0",
]
[project.scripts]
archive-rag = "src.cli.main:main"
[tool.setuptools]
packages = ["src", "src.models", "src.services", "src.cli", "src.lib"]
[tool.setuptools.package-data]
"*" = ["*.json", "*.md", "*.txt"]