Merge pull request #31 from rhooper/setup-py-package

use packages= in setup.py
This commit is contained in:
Kattni 2020-05-27 19:16:28 -04:00 committed by GitHub
commit ad00c4b3cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -49,5 +49,5 @@ setup(
# simple. Or you can use find_packages().
# TODO: IF LIBRARY FILES ARE A PACKAGE FOLDER,
# CHANGE `py_modules=['...']` TO `packages=['...']`
py_modules=["adafruit_led_animation"],
packages=["adafruit_led_animation", "adafruit_led_animation.animation"],
)