-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (57 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
65 lines (57 loc) · 1.59 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "litesearch"
dynamic = ["version"]
description = "search through files with fts5, vectors and get reranked results. Fast"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [{name = "71293", email = "karthik.rajgopal@hotmail.com"}]
keywords = ['nbdev', 'fts+vectors', 'semantic search', 'vector search', 'text search', 'document search']
classifiers = ["Natural Language :: English", "Intended Audience :: Developers", "Development Status :: 3 - Alpha", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only"]
dependencies = [
"chonkie>=1.6.0",
"codesigs>=0.0.2",
"fastlite>=0.2.4",
"model2vec>=0.7.0",
"notebook>=7.5.4",
"onnxruntime>=1.24.3",
"pandas>=2.3.3",
"pdf-oxide>=0.3.17",
"pillow>=12.1.1",
"tokenizers>=0.22.2",
"usearch>=2.23.0",
"yake>=0.7.3",
]
[project.urls]
Repository = "https://github.com/Karthik777/litesearch"
Documentation = "https://Karthik777.github.io/litesearch"
[project.entry-points.nbdev]
litesearch = "litesearch._modidx:d"
[dependency-groups]
dev = [
'notebook',
'nbdev',
'jupyterlab',
'jupyterlab-quarto',
'selectolax',
'lisette',
'ddgs',
'pyperclip',
"chonkie",
'flashrank',
"model2vec[distill]>=0.7.0",
]
[tool.hatch.version]
path = "litesearch/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["litesearch"]
[tool.hatch.build.targets.sdist]
include = [
"/litesearch",
"/README.md",
"/pyproject.toml",
]
[tool.nbdev]