From 32721c0fd7180da1e62ce1a88dc3ee4c64f80b55 Mon Sep 17 00:00:00 2001 From: foamyguy Date: Sat, 31 Oct 2020 14:23:15 -0500 Subject: [PATCH] include sub packages inside setup.py for pypi install --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c7b7dec..ee672b8 100644 --- a/setup.py +++ b/setup.py @@ -46,5 +46,5 @@ keywords="adafruit blinka circuitpython micropython bitmap fonts text display tft lcd displayio imageload image", # You can just specify the packages manually here if your project is # simple. Or you can use find_packages(). - packages=["adafruit_imageload"], + packages=["adafruit_imageload", "adafruit_imageload.bmp", "adafruit_imageload.pnm"], )