s/TheengsGateway/TheengsDecoder/g now that the pip package has been published.

This commit is contained in:
Fabio Manganiello 2023-03-20 01:41:21 +01:00
parent 431dedf3eb
commit 3743ee4f00
Signed by untrusted user: blacklight
GPG key ID: D90FBA7F76362774
5 changed files with 6 additions and 7 deletions

View file

@ -17,7 +17,7 @@ def readfile(fname):
def pkg_files(dir):
paths = []
# noinspection PyShadowingNames
for (path, _, files) in os.walk(dir):
for path, _, files in os.walk(dir):
for file in files:
paths.append(os.path.join('..', path, file))
return paths
@ -177,9 +177,9 @@ setup(
'bluetooth': [
'bleak',
'bluetooth-numbers',
'TheengsDecoder',
'pybluez @ https://github.com/pybluez/pybluez/tarball/master',
'PyOBEX @ https://github.com/BlackLight/PyOBEX/tarball/master',
'TheengsGateway @ https://github.com/theengs/gateway/tarball/development',
],
# Support for TP-Link devices
'tplink': ['pyHS100'],