build system
This commit is contained in:
@@ -0,0 +1 @@
|
||||
"""Command handlers package for the Chroma CLI."""
|
||||
+22
-3
@@ -1,7 +1,11 @@
|
||||
[build-system]
|
||||
requires = ["setuptools>=80", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "chroma"
|
||||
version = "0.1.0"
|
||||
description = "Add your description here"
|
||||
name = "chromy"
|
||||
version = "1.0.0"
|
||||
description = "Chromy is a minimal CLI RAG system based on Chromadb"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.12"
|
||||
dependencies = [
|
||||
@@ -14,5 +18,20 @@ dependencies = [
|
||||
"transformers>=5.5.4",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
chromy = "main:main"
|
||||
|
||||
[tool.setuptools]
|
||||
packages = ["handlers"]
|
||||
py-modules = [
|
||||
"main",
|
||||
"cli_app",
|
||||
"cli_parser",
|
||||
"chroma_functions",
|
||||
"chunk_functions",
|
||||
"embed",
|
||||
"utilities",
|
||||
]
|
||||
|
||||
[dependency-groups]
|
||||
dev = ["nuitka[onefile]>=4.0.8"]
|
||||
|
||||
Reference in New Issue
Block a user