Update dependency requirement

If anyone is reading the file they will know to install `python3-smbus`,
but if someone just do a quick `pip3 install bme680` then make sure to pull smbus from PyPI
This commit is contained in:
Nicolai Søborg 2020-11-01 01:11:16 +00:00 committed by GitHub
parent 91bb131713
commit 02ca7a4353
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -50,5 +50,5 @@ setup(
classifiers=classifiers,
packages=['bme680'],
py_modules=[],
install_requires=['smbus2']
install_requires=['smbus'] # preferably: install `python3-smbus` instead of relying on this
)