claude-sdk-tutor 0.1.0__tar.gz → 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {claude_sdk_tutor-0.1.0 → claude_sdk_tutor-0.1.2}/PKG-INFO +1 -1
- {claude_sdk_tutor-0.1.0 → claude_sdk_tutor-0.1.2}/app.py +1 -1
- {claude_sdk_tutor-0.1.0 → claude_sdk_tutor-0.1.2}/pyproject.toml +2 -2
- {claude_sdk_tutor-0.1.0 → claude_sdk_tutor-0.1.2}/.gitignore +0 -0
- {claude_sdk_tutor-0.1.0 → claude_sdk_tutor-0.1.2}/.python-version +0 -0
- {claude_sdk_tutor-0.1.0 → claude_sdk_tutor-0.1.2}/CLAUDE.md +0 -0
- {claude_sdk_tutor-0.1.0 → claude_sdk_tutor-0.1.2}/LICENSE +0 -0
- {claude_sdk_tutor-0.1.0 → claude_sdk_tutor-0.1.2}/Makefile +0 -0
- {claude_sdk_tutor-0.1.0 → claude_sdk_tutor-0.1.2}/README.md +0 -0
- {claude_sdk_tutor-0.1.0 → claude_sdk_tutor-0.1.2}/__init__.py +0 -0
- {claude_sdk_tutor-0.1.0 → claude_sdk_tutor-0.1.2}/src/__init__.py +0 -0
- {claude_sdk_tutor-0.1.0 → claude_sdk_tutor-0.1.2}/src/claude/__init__.py +0 -0
- {claude_sdk_tutor-0.1.0 → claude_sdk_tutor-0.1.2}/src/claude/claude_agent.py +0 -0
- {claude_sdk_tutor-0.1.0 → claude_sdk_tutor-0.1.2}/uv.lock +0 -0
|
@@ -53,7 +53,7 @@ class MyApp(App):
|
|
|
53
53
|
|
|
54
54
|
def compose(self) -> ComposeResult:
|
|
55
55
|
with Vertical(id="main"):
|
|
56
|
-
yield Static("Welcome to claude tutor!", id="header")
|
|
56
|
+
yield Static("Welcome to claude SDK tutor!", id="header")
|
|
57
57
|
yield RichLog(markup=True, highlight=True)
|
|
58
58
|
yield LoadingIndicator(id="spinner")
|
|
59
59
|
yield Input()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "claude-sdk-tutor"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.2"
|
|
4
4
|
description = "Add your description here"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.13"
|
|
@@ -12,7 +12,7 @@ dependencies = [
|
|
|
12
12
|
]
|
|
13
13
|
|
|
14
14
|
[project.scripts]
|
|
15
|
-
|
|
15
|
+
claude_sdk_tutor = "app:main"
|
|
16
16
|
|
|
17
17
|
[build-system]
|
|
18
18
|
requires = ["hatchling"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|