team-0-hackathon / indexing /pyproject.toml
tarekziade's picture
tarekziade HF Staff
syncing
15d3835
raw
history blame contribute delete
586 Bytes
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ragstudio"
version = "0.1.0"
description = "Local semantic search over a folder of text + images."
requires-python = ">=3.10,<3.11"
dynamic = ["dependencies"]
[project.scripts]
ragstudio-index = "index:main"
ragstudio-query = "query:main"
ragstudio-sync = "sync:main"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.setuptools]
py-modules = ["index", "query", "sync"]
[tool.setuptools.packages.find]
include = ["searchers*", "indexers*"]