chore: add py.typed and include it in flit config

Copybara import of the project:

--
f56fd74efecc2cf6fbe6db70e91dfa7780fb9c68 by Mohammad <mohammaddevgermany@gmail.com>:

build(package): add py.typed and include it in flit config

This adds a py.typed marker file to the google.adk package and updates
the Flit configuration in pyproject.toml to include it in the distribution.

This ensures the package is PEP 561 compliant and allows static type
checkers (like mypy and pyright) to recognize that the package supports type hints.

COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/913 from mohamadghaffari:add-py-typed f56fd74efecc2cf6fbe6db70e91dfa7780fb9c68
PiperOrigin-RevId: 764603119
This commit is contained in:
Mohammad Ghaffarifar 2025-05-29 00:29:16 -07:00 committed by Copybara-Service
parent 999a7fe69d
commit a9345a072e

View File

@ -145,6 +145,7 @@ exclude = ['src/**/*.sh']
[tool.flit.module] [tool.flit.module]
name = "google.adk" name = "google.adk"
include = ["py.typed"]
[tool.isort] [tool.isort]
profile = "google" profile = "google"