aiorexense 0.1.1__tar.gz → 0.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aiorexense
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: Rexense device client library: HTTP API + WebSocket
5
5
  Home-page: https://github.com/RexenseIoT/aiorexense.git
6
6
  Author: Zhejiang Rexense IoT Technology Co., Ltd
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aiorexense
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: Rexense device client library: HTTP API + WebSocket
5
5
  Home-page: https://github.com/RexenseIoT/aiorexense.git
6
6
  Author: Zhejiang Rexense IoT Technology Co., Ltd
@@ -10,6 +10,7 @@ aiorexense.egg-info/top_level.txt
10
10
  src/__init__.py
11
11
  src/api.py
12
12
  src/const.py
13
+ src/py.typed
13
14
  src/ws_client.py
14
15
  tests/test_api.py
15
16
  tests/test_const.py
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "aiorexense"
7
- version = "0.1.1"
7
+ version = "0.1.2"
8
8
  description = "Rexense device client library: HTTP API + WebSocket"
9
9
  readme = "README.md"
10
10
  license = { file = "LICENSE" }
@@ -19,6 +19,8 @@ setup(
19
19
  license="MIT License",
20
20
  package_dir={"aiorexense": "src"},
21
21
  packages=["aiorexense"],
22
+ include_package_data=True,
23
+ package_data={"aiorexense": ["py.typed"]},
22
24
  url="https://github.com/RexenseIoT/aiorexense.git", # adjust as needed
23
25
  python_requires=">=3.8",
24
26
  install_requires=[
@@ -2,7 +2,7 @@
2
2
  Rexense WS client library init.
3
3
  """
4
4
 
5
- __version__ = "0.1.1"
5
+ __version__ = "0.1.2"
6
6
 
7
7
  from .api import get_basic_info
8
8
  from .const import (
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes