First commit
This commit is contained in:
34
apps/index-gen/pyproject.toml
Normal file
34
apps/index-gen/pyproject.toml
Normal file
@@ -0,0 +1,34 @@
|
||||
[project]
|
||||
name = "index-gen"
|
||||
version = "0.1.0"
|
||||
description = "Add your description here"
|
||||
readme = "README.md"
|
||||
authors = [
|
||||
{ name = "Anibal Angulo", email = "a8065384@banorte.com" }
|
||||
]
|
||||
requires-python = ">=3.12"
|
||||
dependencies = [
|
||||
"chunker",
|
||||
"document-converter",
|
||||
"embedder",
|
||||
"file-storage",
|
||||
"llm",
|
||||
"utils",
|
||||
"vector-search",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
index-gen = "index_gen.cli:app"
|
||||
|
||||
[build-system]
|
||||
requires = ["uv_build>=0.8.12,<0.9.0"]
|
||||
build-backend = "uv_build"
|
||||
|
||||
[tool.uv.sources]
|
||||
file-storage = { workspace = true }
|
||||
vector-search = { workspace = true }
|
||||
utils = { workspace = true }
|
||||
embedder = { workspace = true }
|
||||
chunker = { workspace = true }
|
||||
document-converter = { workspace = true }
|
||||
llm = { workspace = true }
|
||||
Reference in New Issue
Block a user