Skip to content

Commit 6e65327

Browse files
committed
Formatting
1 parent 23163ef commit 6e65327

File tree

2 files changed

+10
-16
lines changed

2 files changed

+10
-16
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,12 @@ uv add a2a-sdk
3434
```
3535

3636
To install with database support:
37+
3738
```bash
3839
# PostgreSQL support
3940
uv add "a2a-sdk[postgresql]"
4041

41-
# MySQL support
42+
# MySQL support
4243
uv add "a2a-sdk[mysql]"
4344

4445
# SQLite support
@@ -57,6 +58,7 @@ pip install a2a-sdk
5758
```
5859

5960
To install with database support:
61+
6062
```bash
6163
# PostgreSQL support
6264
pip install "a2a-sdk[postgresql]"
@@ -90,7 +92,7 @@ pip install "a2a-sdk[sql]"
9092
uv run test_client.py
9193
```
9294

93-
3. You can validate your agent using the agent inspector. Follow the instructions at the [a2a-inspector](https://github.com/a2aproject/a2a-inspector) repo.
95+
3. You can validate your agent using the agent inspector. Follow the instructions at the [a2a-inspector](https://github.com/a2aproject/a2a-inspector) repo.
9496

9597
You can also find more Python samples [here](https://github.com/a2aproject/a2a-samples/tree/main/samples/python) and JavaScript samples [here](https://github.com/a2aproject/a2a-samples/tree/main/samples/js).
9698

pyproject.toml

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies = [
2020
"grpcio>=1.60",
2121
"grpcio-tools>=1.60",
2222
"grpcio_reflection>=1.7.0",
23-
"protobuf==5.29.5"
23+
"protobuf==5.29.5",
2424
]
2525

2626
classifiers = [
@@ -37,18 +37,10 @@ classifiers = [
3737
]
3838

3939
[project.optional-dependencies]
40-
postgresql = [
41-
"sqlalchemy[asyncio,postgresql-asyncpg]>=2.0.0"
42-
]
43-
mysql = [
44-
"sqlalchemy[asyncio,aiomysql]>=2.0.0"
45-
]
46-
sqlite = [
47-
"sqlalchemy[asyncio,aiosqlite]>=2.0.0"
48-
]
49-
sql = [
50-
"sqlalchemy[asyncio,postgresql-asyncpg,aiomysql,aiosqlite]>=2.0.0"
51-
]
40+
postgresql = ["sqlalchemy[asyncio,postgresql-asyncpg]>=2.0.0"]
41+
mysql = ["sqlalchemy[asyncio,aiomysql]>=2.0.0"]
42+
sqlite = ["sqlalchemy[asyncio,aiosqlite]>=2.0.0"]
43+
sql = ["sqlalchemy[asyncio,postgresql-asyncpg,aiomysql,aiosqlite]>=2.0.0"]
5244

5345
[project.urls]
5446
homepage = "https://a2aproject.github.io/A2A/"
@@ -98,7 +90,7 @@ dev = [
9890
"uv-dynamic-versioning>=0.8.2",
9991
"types-protobuf",
10092
"types-requests",
101-
"pre-commit"
93+
"pre-commit",
10294
]
10395

10496
[[tool.uv.index]]

0 commit comments

Comments
 (0)