Skip to content

Commit 4fb04ed

Browse files
committed
Use find_packages to find subpackages.
1 parent 656e503 commit 4fb04ed

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

setup.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,5 @@
5555
# What does your project relate to?
5656
keywords='adafruit blinka circuitpython micropython ble bluetooth',
5757

58-
# You can just specify the packages manually here if your project is
59-
# simple. Or you can use find_packages().
60-
# TODO: IF LIBRARY FILES ARE A PACKAGE FOLDER,
61-
# CHANGE `py_modules=['...']` TO `packages=['...']`
62-
packages=['adafruit_ble'],
58+
packages=find_packages(include=["adafruit_ble.*"]),
6359
)

0 commit comments

Comments
 (0)