Skip to content

Commit b33bfac

Browse files
[WIP] Rename package from celesto_sdk to celesto (#2)
* Initial plan * Rename package from celesto_sdk to celesto Co-authored-by: aniketmaurya <21018714+aniketmaurya@users.noreply.github.com> * Use relative import in deployment.py for better package structure Co-authored-by: aniketmaurya <21018714+aniketmaurya@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: aniketmaurya <21018714+aniketmaurya@users.noreply.github.com>
1 parent b076564 commit b33bfac

File tree

14 files changed

+8
-8
lines changed

14 files changed

+8
-8
lines changed

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Celesto SDK is a Python client + CLI for the Celesto AI platform. It provides:
1010

1111
```
1212
celesto-sdk/
13-
├── src/celesto_sdk/ # SDK + CLI source code
13+
├── src/celesto/ # SDK + CLI source code
1414
│ ├── sdk/ # SDK client, exceptions, types
1515
│ ├── main.py # CLI app entrypoint (typer)
1616
│ ├── deployment.py # CLI deployment helpers

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ celesto a2a get-card --agent http://localhost:8000
2727
## SDK
2828

2929
```python
30-
from celesto_sdk.sdk import CelestoSDK
30+
from celesto.sdk import CelestoSDK
3131

3232
client = CelestoSDK()
3333
print(client.deployment.list())

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ repository = "https://github.com/CelestoAI/celesto-sdk"
3232
documentation = "https://docs.celesto.ai/celesto-sdk"
3333

3434
[project.scripts]
35-
celesto = "celesto_sdk:app"
35+
celesto = "celesto:app"
3636

3737
[tool.hatch.version]
38-
path = "src/celesto_sdk/__init__.py"
38+
path = "src/celesto/__init__.py"
3939

4040
[tool.hatch.build.targets.wheel]
41-
packages = ["src/celesto_sdk"]
41+
packages = ["src/celesto"]
4242

4343
[tool.uv]
4444
package = true
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from rich.console import Console
1111
from typing_extensions import Annotated
1212

13-
from celesto_sdk.sdk.client import CelestoSDK
13+
from .sdk.client import CelestoSDK
1414

1515
console = Console()
1616

0 commit comments

Comments
 (0)