Skip to content

Commit 2673228

Browse files
committed
fix: Include 'cogstack_model_gateway' package
Explicitly include the 'cogstack_model_gateway' package in the pyproject.toml file to ensure it is recognized as part of the project, since using 'tool.poetry.packages' (necessary for the client) disables poetry's package auto-detection feature. Signed-off-by: Phoevos Kalemkeris <[email protected]>
1 parent c45e760 commit 2673228

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ description = "A Gateway for accessing Cogstack ModelServe instances"
55
authors = ["Phoevos Kalemkeris <[email protected]>"]
66
license = "Apache License 2.0"
77
readme = "README.md"
8-
packages = [{include = "cogstack_model_gateway_client", from = "client"}]
8+
packages = [
9+
{include = "cogstack_model_gateway"},
10+
{include = "cogstack_model_gateway_client", from = "client"}
11+
]
912

1013
[tool.poetry.dependencies]
1114
python = "^3.12"

0 commit comments

Comments
 (0)