41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "leann"
|
|
version = "0.1.16"
|
|
description = "LEANN - The smallest vector index in the world. RAG Everything with LEANN!"
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
license = { text = "MIT" }
|
|
authors = [
|
|
{ name = "LEANN Team" }
|
|
]
|
|
keywords = ["vector-database", "rag", "embeddings", "search", "ai"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
]
|
|
|
|
# Default installation: core + hnsw
|
|
dependencies = [
|
|
"leann-core>=0.1.0",
|
|
"leann-backend-hnsw>=0.1.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
diskann = [
|
|
"leann-backend-diskann>=0.1.0",
|
|
]
|
|
|
|
[project.urls]
|
|
Repository = "https://github.com/yichuan-w/LEANN"
|
|
Issues = "https://github.com/yichuan-w/LEANN/issues"
|