Skip to content

Commit ca7c1c0

Browse files
committed
chore: add __about__
1 parent 556df07 commit ca7c1c0

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

adk-chatkit/pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ authors = [
99
requires-python = ">=3.11"
1010
dependencies = [
1111
"openai-chatkit>=1.0.2",
12-
1312
]
1413

1514
classifiers = [
@@ -30,4 +29,3 @@ repository = "https://github.com/ksachdeva/adk-chatkit"
3029
[build-system]
3130
requires = ["hatchling"]
3231
build-backend = "hatchling.build"
33-
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
__author__ = "Kapil Sachdeva"
2+
__application__ = "adk-chatkit"
3+
__version__ = "0.0.1"

adk-chatkit/src/adk_chatkit/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
from .__about__ import __application__, __author__, __version__
12
from ._callbacks import remove_widgets_and_client_tool_calls
23
from ._client_tool_call import ClientToolCallState, add_client_tool_call_to_tool_response
34
from ._context import ADKContext
@@ -6,6 +7,9 @@
67
from ._widgets import add_widget_to_tool_response
78

89
__all__ = [
10+
"__version__",
11+
"__application__",
12+
"__author__",
913
"ADKContext",
1014
"ADKStore",
1115
"stream_agent_response",

0 commit comments

Comments
 (0)