From c65d4c2389fcde291ce772a950d37aca8aa9b436 Mon Sep 17 00:00:00 2001 From: Dan Trickey Date: Wed, 28 Oct 2020 17:12:58 +0000 Subject: [PATCH] Implement PEP 561 to indicate inline type hints Fixes #30 --- dbus_next/py.typed | 0 setup.py | 3 ++- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 dbus_next/py.typed diff --git a/dbus_next/py.typed b/dbus_next/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py index ba845d1..f6e815a 100644 --- a/setup.py +++ b/setup.py @@ -59,5 +59,6 @@ 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: Implementation :: CPython', - 'Programming Language :: Python :: Implementation :: PyPy' + 'Programming Language :: Python :: Implementation :: PyPy', + 'Typing :: Typed' ])