-
Notifications
You must be signed in to change notification settings - Fork 61
/
pyproject.toml
61 lines (49 loc) · 1.49 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
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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2", "setuptools_scm_azure_pipelines>=0.1"]
build-backend = "setuptools.build_meta"
[project]
name = "pyllmsearch"
description = "LLM Powered Advanced RAG Application"
dynamic = ["dependencies", "version"]
keywords = ["llm", "rag", "retrieval-augemented-generation","large-language-models", "local", "splade", "hyde", "reranking", "chroma", "openai"]
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.optional-dependencies]
dev = [
"black",
"pytest",
"pytest-cov",
"ruff",
"autodoc_pydantic",
"sphinx",
"sphinx-markdown-builder",
"sphinx_rtd_theme"
]
azureparser = [
"azure-ai-documentintelligence==1.0.0b3",
"azure-identity==1.17.1"
]
[project.urls]
Homepage = "https://github.com/snexus/llm-search"
Documentation = "https://llm-search.readthedocs.io/en/latest/"
[tool.setuptools_scm]
write_to = "src/llmsearch/_version.py"
local_scheme = "no-local-version"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.ruff]
# Decrease the maximum line length to 79 characters.
line-length = 119
src = ["src"]
[project.scripts]
llmsearch = 'llmsearch.cli:main_cli'
llmsearchapi = 'llmsearch.api:main'