22 lines
416 B
TOML
22 lines
416 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "leann-core"
|
|
version = "0.1.0"
|
|
description = "Core API and plugin system for Leann."
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
license = { text = "MIT" }
|
|
|
|
dependencies = [
|
|
"numpy>=1.20.0",
|
|
"tqdm>=4.60.0"
|
|
]
|
|
|
|
[project.scripts]
|
|
leann = "leann.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"] |