PiSupply / PaPiRus

Resources for PaPiRus ePaper eInk displays
https://www.pi-supply.com/product/papirus-epaper-eink-screen-hat-for-raspberry-pi/
Other
346 stars 85 forks source link

feat: make it pip compatible #213

Closed Minipada closed 1 year ago

Minipada commented 4 years ago

Summary

This PR makes the package pip compatible.

How I tested

I ran : pip install git+https://github.com/Minipada/PaPiRus.git@pip

Tested on:

Installed files (output of the tree command):

└── usr
    ├── bin
    │   ├── papirus-animation
    │   ├── papirus-buttons
    │   ├── papirus-cam
    │   ├── papirus-clear
    │   ├── papirus-clock
    │   ├── papirus-composite-write
    │   ├── papirus-config
    │   ├── papirus-draw
    │   ├── papirus-fbcopy
    │   ├── papirus-gol
    │   ├── papirus-radar
    │   ├── papirus-set
    │   ├── papirus-setup
    │   ├── papirus-snake
    │   ├── papirus-system
    │   ├── papirus-temp
    │   ├── papirus-test
    │   ├── papirus-textfill
    │   ├── papirus-twitter
    │   └── papirus-write
    ├── lib
    │   └── python3.7
    │       └── site-packages
    │           ├── papirus
    │           │   ├── __init__.py
    │           │   ├── __pycache__
    │           │   │   ├── __init__.cpython-37.pyc
    │           │   │   ├── composite.cpython-37.pyc
    │           │   │   ├── epd.cpython-37.pyc
    │           │   │   ├── image.cpython-37.pyc
    │           │   │   ├── lm75b.cpython-37.pyc
    │           │   │   ├── readrtc.cpython-37.pyc
    │           │   │   ├── text.cpython-37.pyc
    │           │   │   └── textpos.cpython-37.pyc
    │           │   ├── composite.py
    │           │   ├── epd.py
    │           │   ├── image.py
    │           │   ├── lm75b.py
    │           │   ├── readrtc.py
    │           │   ├── text.py
    │           │   └── textpos.py
    │           └── papirus-1.0.0-py3.7.egg-info
    └── share
        └── bitmaps
            ├── 0.gif
            ├── 1.gif
            ├── 10.gif
            ├── 11.gif
            ├── 12.gif
            ├── 13.gif
            ├── 14.gif
            ├── 15.gif
            ├── 2.gif
            ├── 3.gif
            ├── 4.gif
            ├── 5.gif
            ├── 6.gif
            ├── 7.gif
            ├── 8.gif
            ├── 9.gif
            ├── papirus-cam-intro.jpg
            ├── papirus-logo.bmp
            └── python.png

9 directories, 56 files

resolves #128