From fdd30aa9171813bb06db9a325bc0e48d78d33162 Mon Sep 17 00:00:00 2001 From: Yuxin Wang Date: Sun, 26 Nov 2023 19:42:57 -0500 Subject: [PATCH] Add py.typed file to mark aioapcaccess as type-annotated (#22) Per [PEP 561](https://peps.python.org/pep-0561/): "Package maintainers who wish to support type checking of their code MUST add a marker file named py.typed to their package supporting typing" Since `aioapcaccess` is fully typed, this PR adds a `py.typed` file at the root of the package to support type checking in downstream dependencies. Note that we are using `setuptools_scm` plugin such that this file is automatically included in the final distribution package, without us having to explicitly specify it in `pyproject.toml`. --- src/aioapcaccess/py.typed | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 src/aioapcaccess/py.typed diff --git a/src/aioapcaccess/py.typed b/src/aioapcaccess/py.typed new file mode 100644 index 0000000..e69de29