Skip to content

Commit

Permalink
enumerate subpackages in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
mdr223 committed Sep 21, 2023
1 parent 5a2d492 commit 6717ba0
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion deploy/chroma/chroma/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,24 @@ requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
packages = ["chromadb"]
packages = [
"chromadb",
"chromadb.api",
"chromadb.api.models",
"chromadb.auth",
"chromadb.auth.basic",
"chromadb.auth.token",
"chromadb.cli",
"chromadb.db",
"chromadb.db.impl",
"chromadb.ingest",
"chromadb.migrations",
"chromadb.segment",
"chromadb.server",
"chromadb.server.fastapi",
"chromadb.telemetry",
"chromadb.utils",
]

[tool.setuptools.package-data]
chromadb = ["*.yml"]

0 comments on commit 6717ba0

Please sign in to comment.