makcu 0.1.4__tar.gz → 0.2.1__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 (49) hide show
  1. makcu-0.2.1/MANIFEST.in +11 -0
  2. makcu-0.2.1/PKG-INFO +1141 -0
  3. makcu-0.2.1/README.md +431 -0
  4. makcu-0.2.1/makcu/__init__.py +60 -0
  5. makcu-0.2.1/makcu/__main__.py +298 -0
  6. makcu-0.2.1/makcu/conftest.py +31 -0
  7. makcu-0.2.1/makcu/connection.py +462 -0
  8. makcu-0.2.1/makcu/controller.py +377 -0
  9. makcu-0.2.1/makcu/errors.py +14 -0
  10. makcu-0.2.1/makcu/makcu.pyi +13 -0
  11. makcu-0.2.1/makcu/mouse.py +252 -0
  12. makcu-0.2.1/makcu/py.typed +2 -0
  13. makcu-0.2.1/makcu/test_suite.py +145 -0
  14. makcu-0.2.1/makcu.egg-info/PKG-INFO +1141 -0
  15. makcu-0.2.1/makcu.egg-info/SOURCES.txt +32 -0
  16. makcu-0.2.1/makcu.egg-info/requires.txt +7 -0
  17. makcu-0.2.1/pyproject.toml +61 -0
  18. makcu-0.2.1/tests/test_button_mask.py +7 -0
  19. makcu-0.2.1/tests/test_capture_right_clicks.py +21 -0
  20. makcu-0.2.1/tests/test_controller_behavior.py +7 -0
  21. makcu-0.2.1/tests/test_device_info.py +8 -0
  22. makcu-0.2.1/tests/test_firmware_version.py +7 -0
  23. makcu-0.2.1/tests/test_get_button_states.py +7 -0
  24. makcu-0.2.1/tests/test_get_raw_mask.py +5 -0
  25. makcu-0.2.1/tests/test_is_button_pressed.py +6 -0
  26. makcu-0.2.1/tests/test_lock_state.py +22 -0
  27. makcu-0.2.1/tests/test_middle_click.py +6 -0
  28. makcu-0.2.1/tests/test_port_connection.py +4 -0
  29. makcu-0.2.1/tests/test_press_and_release.py +7 -0
  30. makcu-0.1.4/MANIFEST.in +0 -7
  31. makcu-0.1.4/PKG-INFO +0 -274
  32. makcu-0.1.4/README.md +0 -262
  33. makcu-0.1.4/makcu/__init__.py +0 -16
  34. makcu-0.1.4/makcu/__main__.py +0 -97
  35. makcu-0.1.4/makcu/conftest.py +0 -22
  36. makcu-0.1.4/makcu/connection.py +0 -290
  37. makcu-0.1.4/makcu/controller.py +0 -159
  38. makcu-0.1.4/makcu/errors.py +0 -19
  39. makcu-0.1.4/makcu/mouse.py +0 -167
  40. makcu-0.1.4/makcu/test_suite.py +0 -81
  41. makcu-0.1.4/makcu.egg-info/PKG-INFO +0 -274
  42. makcu-0.1.4/makcu.egg-info/SOURCES.txt +0 -18
  43. makcu-0.1.4/pyproject.toml +0 -24
  44. makcu-0.1.4/pytest.ini +0 -4
  45. {makcu-0.1.4 → makcu-0.2.1}/LICENSE +0 -0
  46. {makcu-0.1.4 → makcu-0.2.1}/makcu/enums.py +0 -0
  47. {makcu-0.1.4 → makcu-0.2.1}/makcu.egg-info/dependency_links.txt +0 -0
  48. {makcu-0.1.4 → makcu-0.2.1}/makcu.egg-info/top_level.txt +0 -0
  49. {makcu-0.1.4 → makcu-0.2.1}/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