Skip to content

Commit 91c5485

Browse files
committed
Core: Fixed models import
1 parent bbce49e commit 91c5485

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,10 @@ classifiers=[
5252
dependencies = ["requests>=2.31.0"]
5353

5454
[tool.setuptools]
55-
packages = ["shellhub"]
55+
packages = [
56+
"shellhub",
57+
"shellhub.models",
58+
]
5659

5760
[tool.setuptools.dynamic]
5861
version = {attr = "shellhub.__version__"}

shellhub/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Increment versions here according to SemVer
2-
__version__ = "0.2.0"
2+
__version__ = "0.2.1"
33

44
from .models.device import ShellHubDevice, ShellHubDeviceInfo
55
from .models.base import ShellHub

0 commit comments

Comments
 (0)