From c68bf674a168035f01bd7c6644af92dd55531246 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 18 Mar 2023 15:43:22 -0700 Subject: [PATCH] add py.typed file to wheel --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 72e4615a..e235b0ad 100755 --- a/setup.py +++ b/setup.py @@ -20,6 +20,7 @@ setuptools.setup( python_requires='>=3.6', url='https://github.com/kellyjonbrazil/jc', packages=setuptools.find_packages(exclude=['*.tests', '*.tests.*', 'tests.*', 'tests']), + package_data={'jc': ['py.typed']}, entry_points={ 'console_scripts': [ 'jc=jc.cli:main'