winpnp 0.0.1__tar.gz → 0.0.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.
Files changed (28) hide show
  1. {winpnp-0.0.1 → winpnp-0.0.2}/PKG-INFO +2 -1
  2. {winpnp-0.0.1 → winpnp-0.0.2}/pyproject.toml +2 -2
  3. {winpnp-0.0.1 → winpnp-0.0.2}/.gitignore +0 -0
  4. {winpnp-0.0.1 → winpnp-0.0.2}/.vscode/settings.json +0 -0
  5. {winpnp-0.0.1 → winpnp-0.0.2}/LICENSE +0 -0
  6. {winpnp-0.0.1 → winpnp-0.0.2}/README.md +0 -0
  7. {winpnp-0.0.1 → winpnp-0.0.2}/deploy/build_wheel.bat +0 -0
  8. {winpnp-0.0.1 → winpnp-0.0.2}/deploy/upload_to_pypi.bat +0 -0
  9. {winpnp-0.0.1 → winpnp-0.0.2}/src/winpnp/__init__.py +0 -0
  10. {winpnp-0.0.1 → winpnp-0.0.2}/src/winpnp/_setupapi.py +0 -0
  11. {winpnp-0.0.1 → winpnp-0.0.2}/src/winpnp/info/__init__.py +0 -0
  12. {winpnp-0.0.1 → winpnp-0.0.2}/src/winpnp/info/_pnp_property_mapping.py +0 -0
  13. {winpnp-0.0.1 → winpnp-0.0.2}/src/winpnp/info/device.py +0 -0
  14. {winpnp-0.0.1 → winpnp-0.0.2}/src/winpnp/info/setup_class.py +0 -0
  15. {winpnp-0.0.1 → winpnp-0.0.2}/src/winpnp/properties/__init__.py +0 -0
  16. {winpnp-0.0.1 → winpnp-0.0.2}/src/winpnp/properties/decoding.py +0 -0
  17. {winpnp-0.0.1 → winpnp-0.0.2}/src/winpnp/properties/keys/__init__.py +0 -0
  18. {winpnp-0.0.1 → winpnp-0.0.2}/src/winpnp/properties/keys/bluetooth.py +0 -0
  19. {winpnp-0.0.1 → winpnp-0.0.2}/src/winpnp/properties/keys/dev_query.py +0 -0
  20. {winpnp-0.0.1 → winpnp-0.0.2}/src/winpnp/properties/keys/device.py +0 -0
  21. {winpnp-0.0.1 → winpnp-0.0.2}/src/winpnp/properties/keys/device_class.py +0 -0
  22. {winpnp-0.0.1 → winpnp-0.0.2}/src/winpnp/properties/keys/device_container.py +0 -0
  23. {winpnp-0.0.1 → winpnp-0.0.2}/src/winpnp/properties/keys/device_interface.py +0 -0
  24. {winpnp-0.0.1 → winpnp-0.0.2}/src/winpnp/properties/keys/device_interface_class.py +0 -0
  25. {winpnp-0.0.1 → winpnp-0.0.2}/src/winpnp/properties/keys/driver_package.py +0 -0
  26. {winpnp-0.0.1 → winpnp-0.0.2}/src/winpnp/properties/kinds.py +0 -0
  27. {winpnp-0.0.1 → winpnp-0.0.2}/src/winpnp/properties/pnp_property.py +0 -0
  28. {winpnp-0.0.1 → winpnp-0.0.2}/tests/test_property_mappings.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: winpnp
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: A package for interacting with Windows Plug and Play (PnP) entities
5
5
  Project-URL: Homepage, https://github.com/SuperPudding98/winpnp
6
6
  Project-URL: Issues, https://github.com/SuperPudding98/winpnp/issues
@@ -15,6 +15,7 @@ Classifier: Topic :: System :: Hardware
15
15
  Classifier: Typing :: Typed
16
16
  Requires-Python: >=3.9
17
17
  Requires-Dist: more-itertools<11,>=10.2.0
18
+ Requires-Dist: pywin32>=306
18
19
  Provides-Extra: deploy
19
20
  Requires-Dist: build<2,>=1.2.2; extra == 'deploy'
20
21
  Requires-Dist: twine<7,>=6.1.0; extra == 'deploy'
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "winpnp"
7
- version = "0.0.1"
7
+ version = "0.0.2"
8
8
  authors = [
9
9
  { name = "Supper Pudding", email = "31290828+SuperPudding98@users.noreply.github.com" },
10
10
  ]
@@ -22,7 +22,7 @@ classifiers = [
22
22
  "Typing :: Typed",
23
23
  ]
24
24
 
25
- dependencies = ["more-itertools>=10.2.0,<11"]
25
+ dependencies = ["more-itertools>=10.2.0,<11", "pywin32>=306"]
26
26
 
27
27
  [project.optional-dependencies]
28
28
  dev = ["pytest>=8.2.1,<9", "pytest-cases>=3.8.6,<4"]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes