From 989d6b7cf2bf7e8ddf93c79223216fca72d818e7 Mon Sep 17 00:00:00 2001 From: Jonas Neubert Date: Thu, 19 May 2022 09:32:12 -0700 Subject: [PATCH 1/2] Add py.typed file as per PEP 561 --- InquirerPy/py.typed | 1 + 1 file changed, 1 insertion(+) create mode 100644 InquirerPy/py.typed diff --git a/InquirerPy/py.typed b/InquirerPy/py.typed new file mode 100644 index 0000000..e1d46c5 --- /dev/null +++ b/InquirerPy/py.typed @@ -0,0 +1 @@ +# Marker file for PEP 561. The InquirerPy package uses inline types. From c521d0ab2704429960b332ee1b45ef60f5d8fea5 Mon Sep 17 00:00:00 2001 From: Jonas Neubert Date: Thu, 19 May 2022 09:41:12 -0700 Subject: [PATCH 2/2] Add py.typed file as per PEP 561 https://python-poetry.org/docs/pyproject/#include-and-exclude --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index b201dc2..435343a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,6 +28,7 @@ classifiers = [ packages = [ {include = "InquirerPy"} ] +include = ["InquirerPy/py.typed"] [tool.poetry.dependencies] python = "^3.7"