tinue / apa102-pi

Pure Python library to drive APA102 LED stripes; Use with Raspberry Pi.
GNU General Public License v2.0
201 stars 71 forks source link

package installation location #39

Closed xxv closed 4 years ago

xxv commented 4 years ago

When installed via pip:

pip install apa102-pi

the installed libraries end up in the top-level packages driver and colorschemes instead of apa102:

$ ls lib/python3.7/site-packages/driver 
apa102.py  colorcycletemplate.py  __init__.py  __pycache__

These should probably be in an apa102 package to avoid namespace conflicts.

tinue commented 4 years ago

You are right, thanks! I'll fix this as soon as I can.

tinue commented 4 years ago

If you have time, would you mind checking the new package? It can be installed from the test PyPi repo: sudo pip3 install -i https://test.pypi.org/simple/ apa102-pi==2.3.0rc1. For safety, you might want to uninstall the previous version first: sudo pip3 uninstall apa102-pi

xxv commented 4 years ago

Looks like it put it in the right spot! :+1:

tinue commented 4 years ago

Thanks! I released this version now.