sdwire 0.2.4__tar.gz → 0.3.0__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.1
2
2
  Name: sdwire
3
- Version: 0.2.4
3
+ Version: 0.3.0
4
4
  Summary: CLI application to interact with Badgerd SDWire devices
5
5
  License: GPL-3
6
6
  Author: Talha Can Havadar
@@ -11,7 +11,6 @@ Classifier: Programming Language :: Python :: 3
11
11
  Classifier: Programming Language :: Python :: 3.12
12
12
  Requires-Dist: click (>=8.1.7,<9.0.0)
13
13
  Requires-Dist: pyftdi (>=0.56.0,<0.57.0)
14
- Requires-Dist: pyudev (>=0.24.3,<0.25.0)
15
14
  Requires-Dist: pyusb (>=1.2.1,<2.0.0)
16
15
  Description-Content-Type: text/markdown
17
16
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "sdwire"
3
- version = "0.2.4"
3
+ version = "0.3.0"
4
4
  description = "CLI application to interact with Badgerd SDWire devices"
5
5
  authors = ["Talha Can Havadar <havadartalha@gmail.com>"]
6
6
  license = "GPL-3"
@@ -12,7 +12,6 @@ python = "^3.12"
12
12
  click = "^8.1.7"
13
13
  pyusb = "^1.2.1"
14
14
  pyftdi = "^0.56.0"
15
- pyudev = "^0.24.3"
16
15
 
17
16
 
18
17
  [tool.poetry.group.dev.dependencies]
@@ -0,0 +1,5 @@
1
+ """SDWire CLI package initialization."""
2
+
3
+ from sdwire import main
4
+
5
+ __all__ = ["main"]