24 lines
648 B
TOML
24 lines
648 B
TOML
[build-system]
|
|
requires = ["setuptools>=45", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "minirag-hku"
|
|
version = "0.0.2"
|
|
authors = [
|
|
{name = "Tianyu Fan"},
|
|
]
|
|
description = "MiniRAG: Towards Extremely Simple Retrieval-Augmented Generation"
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Intended Audience :: Developers",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
]
|
|
|
|
[tool.setuptools]
|
|
packages = ["minirag"] |