-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (33 loc) · 1.15 KB
/
pyproject.toml
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
[tool.poetry]
name = "just-semantic-search"
version = "0.0.17"
package-mode = false
description = "Semantic search implementation with hybrid search support and multiple backends"
authors = [
"Alex Karmazin <[email protected]>",
"Anton Kulaga <[email protected]>"
]
license = "Apache-2.0"
readme = "README.md"
packages = [] # No packages at root level, using namespace packages
keywords = ["python", "llm", "science", "review", "hybrid search", "semantic search", "search", "vector search", "hybrid search"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.11",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
[tool.poetry.dependencies]
python = ">=3.11,<3.14"
just-semantic-search-core = { path = "core", develop = true }
just-semantic-search-meili = { path = "meili", develop = true }
pyfunctional = ">=1.5.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.0"
click = "*"
pycomfort = ">=0.0.15"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"