We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbce49e commit 91c5485Copy full SHA for 91c5485
pyproject.toml
@@ -52,7 +52,10 @@ classifiers=[
52
dependencies = ["requests>=2.31.0"]
53
54
[tool.setuptools]
55
-packages = ["shellhub"]
+packages = [
56
+ "shellhub",
57
+ "shellhub.models",
58
+]
59
60
[tool.setuptools.dynamic]
61
version = {attr = "shellhub.__version__"}
shellhub/__init__.py
@@ -1,5 +1,5 @@
1
# Increment versions here according to SemVer
2
-__version__ = "0.2.0"
+__version__ = "0.2.1"
3
4
from .models.device import ShellHubDevice, ShellHubDeviceInfo
5
from .models.base import ShellHub
0 commit comments