Browse Source

Fix setup after adding new package in #303 (#304)

Damian Sypniewski 4 weeks ago
parent
commit
285c6ec781
1 changed files with 6 additions and 1 deletions
  1. 6 1
      setup.py

+ 6 - 1
setup.py

@@ -7,7 +7,12 @@ long_description = (this_directory / "README.md").read_text()
 
 setup(
     name="PySwitchbot",
-    packages=["switchbot", "switchbot.devices", "switchbot.adv_parsers"],
+    packages=[
+        "switchbot",
+        "switchbot.devices",
+        "switchbot.const",
+        "switchbot.adv_parsers",
+    ],
     install_requires=[
         "aiohttp>=3.9.5",
         "bleak>=0.19.0",