pydantic-rpc-cli 0.15.0__tar.gz → 0.15.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.
@@ -1,9 +1,13 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pydantic-rpc-cli
3
- Version: 0.15.0
3
+ Version: 0.15.2
4
4
  Summary: CLI tool for pydantic-rpc with server runtime support
5
5
  Author: Yasushi Itoh
6
- Requires-Dist: pydantic-rpc>=0.15.0
6
+ Classifier: Programming Language :: Python :: 3.11
7
+ Classifier: Programming Language :: Python :: 3.12
8
+ Classifier: Programming Language :: Python :: 3.13
9
+ Classifier: Programming Language :: Python :: 3.14
10
+ Requires-Dist: pydantic-rpc>=0.15.2
7
11
  Requires-Dist: hypercorn>=0.17.3
8
12
  Requires-Dist: gunicorn>=20.1.0
9
13
  Requires-Dist: uvloop>=0.17.0
@@ -1,18 +1,24 @@
1
1
  [project]
2
2
  name = "pydantic-rpc-cli"
3
- version = "0.15.0"
3
+ version = "0.15.2"
4
4
  description = "CLI tool for pydantic-rpc with server runtime support"
5
5
  authors = [
6
6
  { name = "Yasushi Itoh" }
7
7
  ]
8
8
  dependencies = [
9
- "pydantic-rpc>=0.15.0",
9
+ "pydantic-rpc>=0.15.2",
10
10
  "hypercorn>=0.17.3",
11
11
  "gunicorn>=20.1.0",
12
12
  "uvloop>=0.17.0", # Optional performance improvement for asyncio
13
13
  ]
14
14
  readme = "README.md"
15
15
  requires-python = ">= 3.11"
16
+ classifiers = [
17
+ "Programming Language :: Python :: 3.11",
18
+ "Programming Language :: Python :: 3.12",
19
+ "Programming Language :: Python :: 3.13",
20
+ "Programming Language :: Python :: 3.14",
21
+ ]
16
22
 
17
23
  [project.scripts]
18
24
  pydantic-rpc = "pydantic_rpc_cli.cli:main"