Skip to content

Commit dc36593

Browse files
authored
Merge pull request #18 from plugwise/fix-missing-dir
Fix missing dirs
2 parents 9d84b22 + c3ed6fa commit dc36593

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

plugwise/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Plugwise module."""
22

3-
__version__ = "0.8.0a3"
3+
__version__ = "0.8.0a5"
44

55
from plugwise.smile import Smile
66
from plugwise.stick import stick

plugwise/messages/requests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@
1212
DateTime,
1313
Int,
1414
LogAddr,
15-
String,
1615
RealClockDate,
1716
RealClockTime,
17+
SInt,
18+
String,
1819
Time,
1920
)
2021

plugwise/smile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# Version detection
1616
import semver
1717

18-
from .constants import (
18+
from plugwise.constants import (
1919
APPLIANCES,
2020
DEFAULT_PORT,
2121
DEFAULT_TIMEOUT,
@@ -32,7 +32,7 @@
3232
SYSTEM,
3333
)
3434

35-
from .exceptions import (
35+
from plugwise.exceptions import (
3636
ConnectionFailedError,
3737
InvalidAuthentication,
3838
UnsupportedDeviceError,
@@ -43,7 +43,7 @@
4343
XMLDataMissingError,
4444
)
4545

46-
from .util import (
46+
from plugwise.util import (
4747
escape_illegal_xml_characters,
4848
format_measure,
4949
determine_selected,

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import codecs
22
import os.path
33

4-
from setuptools import setup
4+
from setuptools import setup, find_packages
55

66

77
def read(rel_path):
@@ -34,7 +34,7 @@ def readme():
3434
author="Plugwise-team",
3535
author_email="[email protected]",
3636
license="MIT",
37-
packages=["plugwise"],
37+
packages=find_packages(),
3838
install_requires=[
3939
"aiohttp",
4040
"async_timeout<4.0",

0 commit comments

Comments
 (0)