makcu 0.1.3__tar.gz → 0.2.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.
Files changed (48) hide show
  1. makcu-0.2.0/MANIFEST.in +11 -0
  2. makcu-0.2.0/PKG-INFO +1141 -0
  3. makcu-0.2.0/README.md +431 -0
  4. makcu-0.2.0/makcu/__init__.py +78 -0
  5. makcu-0.2.0/makcu/__main__.py +314 -0
  6. makcu-0.2.0/makcu/conftest.py +32 -0
  7. makcu-0.2.0/makcu/connection.py +486 -0
  8. makcu-0.2.0/makcu/controller.py +421 -0
  9. makcu-0.2.0/makcu/makcu.pyi +13 -0
  10. makcu-0.2.0/makcu/mouse.py +270 -0
  11. makcu-0.2.0/makcu/py.typed +2 -0
  12. makcu-0.2.0/makcu/test_suite.py +159 -0
  13. makcu-0.2.0/makcu.egg-info/PKG-INFO +1141 -0
  14. makcu-0.2.0/makcu.egg-info/SOURCES.txt +32 -0
  15. makcu-0.2.0/makcu.egg-info/requires.txt +7 -0
  16. makcu-0.2.0/pyproject.toml +61 -0
  17. makcu-0.2.0/tests/test_button_mask.py +7 -0
  18. makcu-0.2.0/tests/test_capture_right_clicks.py +21 -0
  19. makcu-0.2.0/tests/test_controller_behavior.py +7 -0
  20. makcu-0.2.0/tests/test_device_info.py +8 -0
  21. makcu-0.2.0/tests/test_firmware_version.py +7 -0
  22. makcu-0.2.0/tests/test_get_button_states.py +7 -0
  23. makcu-0.2.0/tests/test_get_raw_mask.py +5 -0
  24. makcu-0.2.0/tests/test_is_button_pressed.py +6 -0
  25. makcu-0.2.0/tests/test_lock_state.py +22 -0
  26. makcu-0.2.0/tests/test_middle_click.py +6 -0
  27. makcu-0.2.0/tests/test_port_connection.py +4 -0
  28. makcu-0.2.0/tests/test_press_and_release.py +7 -0
  29. makcu-0.1.3/MANIFEST.in +0 -7
  30. makcu-0.1.3/PKG-INFO +0 -310
  31. makcu-0.1.3/README.md +0 -298
  32. makcu-0.1.3/makcu/__init__.py +0 -16
  33. makcu-0.1.3/makcu/__main__.py +0 -97
  34. makcu-0.1.3/makcu/conftest.py +0 -22
  35. makcu-0.1.3/makcu/connection.py +0 -271
  36. makcu-0.1.3/makcu/controller.py +0 -176
  37. makcu-0.1.3/makcu/mouse.py +0 -116
  38. makcu-0.1.3/makcu/test_suite.py +0 -100
  39. makcu-0.1.3/makcu.egg-info/PKG-INFO +0 -310
  40. makcu-0.1.3/makcu.egg-info/SOURCES.txt +0 -18
  41. makcu-0.1.3/pyproject.toml +0 -24
  42. makcu-0.1.3/pytest.ini +0 -4
  43. {makcu-0.1.3 → makcu-0.2.0}/LICENSE +0 -0
  44. {makcu-0.1.3 → makcu-0.2.0}/makcu/enums.py +0 -0
  45. {makcu-0.1.3 → makcu-0.2.0}/makcu/errors.py +0 -0
  46. {makcu-0.1.3 → makcu-0.2.0}/makcu.egg-info/dependency_links.txt +0 -0
  47. {makcu-0.1.3 → makcu-0.2.0}/makcu.egg-info/top_level.txt +0 -0
  48. {makcu-0.1.3 → makcu-0.2.0}/setup.cfg +0 -0
@@ -0,0 +1,11 @@
1
+ include README.md
2
+ include LICENSE
3
+ include pyproject.toml
4
+ include pytest.ini
5
+
6
+ recursive-include src *.py
7
+ recursive-include src *.typed
8
+ prune scripts
9
+ global-exclude __pycache__
10
+ global-exclude *.py[co]
11
+ global-exclude *.pyc