move top-level modules into a real package

This commit is contained in:
Matteo Rosati
2026-04-22 15:47:46 +02:00
parent e33160282c
commit 8ebab832d5
35 changed files with 6192 additions and 31 deletions
+2 -11
View File
@@ -19,19 +19,10 @@ dependencies = [
]
[project.scripts]
chromy = "main:main"
chromy = "chromy.main:main"
[tool.setuptools]
packages = ["handlers"]
py-modules = [
"main",
"cli_app",
"cli_parser",
"chroma_functions",
"chunk_functions",
"embed",
"utilities",
]
packages = ["chromy", "chromy.handlers"]
[dependency-groups]
dev = ["nuitka[onefile]>=4.0.8"]