-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (72 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
80 lines (72 loc) · 1.67 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["setuptools>=61.0", "build", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sqlite-rag"
dynamic = ["version"]
description = "Hybird search with SQLite AI and SQLite Vector"
authors = [{name = "SQLite AI Team"}]
requires-python = ">=3.10"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
dependencies = [
"typer",
"huggingface_hub[hf_transfer]",
"markitdown[docx]",
"markitdown[outlook]",
"markitdown[pdf]",
"markitdown[pptx]",
"markitdown[xls]",
"markitdown[xlsx]",
"python-frontmatter",
"prompt-toolkit",
"sqlite-ai",
"sqliteai-vector"
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-mock",
"pytest-cov",
"black",
"flake8",
"bandit",
"isort",
"pre-commit",
"pyarrow",
"pandas",
"psutil",
"twine",
"build",
]
[project.urls]
Homepage = "https://sqlite.ai"
Repository = "https://github.com/sqliteai/sqlite-rag"
Issues = "https://github.com/sqliteai/sqlite-rag/issues"
[project.scripts]
sqlite-rag = "sqlite_rag.cli:cli"
[tool.setuptools.packages.find]
where = ["src"]
include = ["sqlite_rag*"]
[tool.setuptools.dynamic]
version = {attr = "sqlite_rag._version.__version__"}
[tool.isort]
# make the tools compatible to each other
profile = "black"
[tool.pytest.ini_options]
log_level = "INFO"
testpaths = [
"tests"
]
pythonpath = [
"src"
]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]