From 6157c118ce453593504aa8313a5f3430e87a2917 Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Fri, 14 Feb 2020 11:38:36 -0800 Subject: [PATCH] Add explicit inclusion of adafruit_ble to setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 730c78f..e4c2cff 100644 --- a/setup.py +++ b/setup.py @@ -55,5 +55,5 @@ # What does your project relate to? keywords='adafruit blinka circuitpython micropython ble bluetooth', - packages=find_packages(include=["adafruit_ble.*"]), + packages=find_packages(include=["adafruit_ble", "adafruit_ble.*"]), )