forked from MiczFlor/RPi-Jukebox-RFID
-
Notifications
You must be signed in to change notification settings - Fork 0
/
requirements.txt
38 lines (28 loc) · 989 Bytes
/
requirements.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Library dependencies for the python code. You need to install these with
# `sudo pip install -r requirements.txt` before you can run this.
#### ESSENTIAL LIBRARIES FOR MAIN FUNCTIONALITY ####
# related libraries.
evdev==0.7.0
git+git://github.com/lthiery/SPI-Py.git#egg=spi-py
youtube_dl
pyserial
spidev
RPi.GPIO
pi-rc522
# Type checking for python
# typing
#### TESTING-RELATED PACKAGES ####
# Checks style, syntax, and other useful errors
# pylint==1.6.5
# We'll use pytest to run our tests; this isn't really necessary to run the code, but it is to run
# the tests. With this here, you can run the tests with `py.test` from the base directory.
# pytest
# Makes it so that pytest can handle the code structure we use, with src/main/python, and src/test.
# pytest-pythonpath
# Allows generation of coverage reports with pytest.
# pytest-cov
# Allows marking tests as flaky, to be rerun if they fail
# flaky
# Allows codecov to generate coverage reports
# coverage
# codecov