From b461b72721bbd295c5b0507045cc0f81eba92487 Mon Sep 17 00:00:00 2001 From: SirGnip Date: Sat, 7 Dec 2019 08:30:32 -0600 Subject: [PATCH] Expose type hints to modules that depend on arcade via PEP 561 (#533) --- arcade/py.typed | 0 setup.py | 3 ++- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 arcade/py.typed diff --git a/arcade/py.typed b/arcade/py.typed new file mode 100644 index 000000000..e69de29bb diff --git a/setup.py b/setup.py index aec2287b7..6b67f6c73 100644 --- a/setup.py +++ b/setup.py @@ -67,7 +67,8 @@ 'examples/images/*.jpg', 'examples/*.csv', 'examples/*.tmx', - 'examples/sounds/*']}, + 'examples/sounds/*', + 'py.typed']}, project_urls={ 'Documentation': 'https://arcade.academy/', 'Example Code ': 'http://arcade.academy/examples/index.html',