From d0943f9b025612169bf35143f721ac58f21d3649 Mon Sep 17 00:00:00 2001 From: Cohen Karnell Date: Mon, 9 Dec 2019 14:00:14 -0500 Subject: [PATCH 1/2] Add py.typed file to allow users to use the types this library provides --- graphql/py.typed | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 graphql/py.typed diff --git a/graphql/py.typed b/graphql/py.typed new file mode 100644 index 00000000..e69de29b From 743f847be6ffcccc3e863585b4b7032405e9c99c Mon Sep 17 00:00:00 2001 From: Cohen Karnell Date: Tue, 10 Dec 2019 18:32:42 -0500 Subject: [PATCH 2/2] Add argument to setup.py --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 64bd95ec..a0471c24 100644 --- a/setup.py +++ b/setup.py @@ -82,4 +82,5 @@ def run_tests(self): tests_require=tests_requires, cmdclass={"test": PyTest}, extras_require={"gevent": ["gevent>=1.1"], "test": tests_requires}, + package_data={"graphql": ["py.typed"]}, )