fix: missing python dependencies

This commit is contained in:
Cyrille Nofficial 2022-05-19 16:05:56 +02:00
parent 7ecda99ebb
commit 2ccb70c020
2 changed files with 5 additions and 1 deletions

View File

@ -3,4 +3,6 @@ docopt~=0.6.2
google~=3.0.0 google~=3.0.0
google-api-core~=2.4.0 google-api-core~=2.4.0
setuptools==60.5.0 setuptools==60.5.0
adafruit-pca9685 adafruit-pca9685
pigpio
RPi.GPIO

View File

@ -32,6 +32,8 @@ setup(name='robocar-pca9685-python',
'protobuf3', 'protobuf3',
'google', 'google',
'adafruit-pca9685', 'adafruit-pca9685',
'pigpio',
'RPi.GPIO',
], ],
tests_require=tests_require, tests_require=tests_require,
extras_require={ extras_require={