makcu 2.1.2__tar.gz → 2.1.3__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.
- makcu-2.1.3/PKG-INFO +32 -0
- makcu-2.1.2/makcu/controller.py → makcu-2.1.3/makcu/__init__.py +377 -376
- {makcu-2.1.2 → makcu-2.1.3}/makcu/__main__.py +387 -387
- {makcu-2.1.2 → makcu-2.1.3}/makcu/conftest.py +33 -33
- {makcu-2.1.2 → makcu-2.1.3}/makcu/connection.py +459 -459
- makcu-2.1.3/makcu/controller.py +389 -0
- {makcu-2.1.2 → makcu-2.1.3}/makcu/enums.py +7 -7
- {makcu-2.1.2 → makcu-2.1.3}/makcu/errors.py +13 -13
- {makcu-2.1.2 → makcu-2.1.3}/makcu/makcu.pyi +10 -10
- {makcu-2.1.2 → makcu-2.1.3}/makcu/mouse.py +249 -249
- {makcu-2.1.2 → makcu-2.1.3}/makcu/test_suite.py +144 -144
- makcu-2.1.3/makcu.egg-info/PKG-INFO +32 -0
- makcu-2.1.3/makcu.egg-info/SOURCES.txt +17 -0
- {makcu-2.1.2 → makcu-2.1.3}/pyproject.toml +1 -1
- makcu-2.1.2/LICENSE +0 -674
- makcu-2.1.2/MANIFEST.in +0 -11
- makcu-2.1.2/PKG-INFO +0 -1141
- makcu-2.1.2/README.md +0 -431
- makcu-2.1.2/makcu/__init__.py +0 -60
- makcu-2.1.2/makcu.egg-info/PKG-INFO +0 -1141
- makcu-2.1.2/makcu.egg-info/SOURCES.txt +0 -32
- makcu-2.1.2/tests/test_button_mask.py +0 -7
- makcu-2.1.2/tests/test_capture_right_clicks.py +0 -21
- makcu-2.1.2/tests/test_controller_behavior.py +0 -7
- makcu-2.1.2/tests/test_device_info.py +0 -8
- makcu-2.1.2/tests/test_firmware_version.py +0 -7
- makcu-2.1.2/tests/test_get_button_states.py +0 -7
- makcu-2.1.2/tests/test_get_raw_mask.py +0 -5
- makcu-2.1.2/tests/test_is_button_pressed.py +0 -6
- makcu-2.1.2/tests/test_lock_state.py +0 -22
- makcu-2.1.2/tests/test_middle_click.py +0 -6
- makcu-2.1.2/tests/test_port_connection.py +0 -4
- makcu-2.1.2/tests/test_press_and_release.py +0 -7
- {makcu-2.1.2 → makcu-2.1.3}/makcu/py.typed +0 -0
- {makcu-2.1.2 → makcu-2.1.3}/makcu.egg-info/dependency_links.txt +0 -0
- {makcu-2.1.2 → makcu-2.1.3}/makcu.egg-info/requires.txt +0 -0
- {makcu-2.1.2 → makcu-2.1.3}/makcu.egg-info/top_level.txt +0 -0
- {makcu-2.1.2 → makcu-2.1.3}/setup.cfg +0 -0
makcu-2.1.3/PKG-INFO
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: makcu
|
3
|
+
Version: 2.1.3
|
4
|
+
Summary: Python library for Makcu hardware device control
|
5
|
+
Author: SleepyTotem
|
6
|
+
Project-URL: Homepage, https://github.com/SleepyTotem/makcu-py-lib
|
7
|
+
Project-URL: Bug Reports, https://github.com/SleepyTotem/makcu-py-lib/issues
|
8
|
+
Project-URL: Source, https://github.com/SleepyTotem/makcu-py-lib
|
9
|
+
Classifier: Development Status :: 4 - Beta
|
10
|
+
Classifier: Intended Audience :: Developers
|
11
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
12
|
+
Classifier: Operating System :: Microsoft :: Windows
|
13
|
+
Classifier: Operating System :: POSIX :: Linux
|
14
|
+
Classifier: Operating System :: MacOS
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
16
|
+
Classifier: Programming Language :: Python :: 3.7
|
17
|
+
Classifier: Programming Language :: Python :: 3.8
|
18
|
+
Classifier: Programming Language :: Python :: 3.9
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
22
|
+
Classifier: Programming Language :: Python :: 3.13
|
23
|
+
Classifier: Topic :: System :: Hardware :: Hardware Drivers
|
24
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
25
|
+
Requires-Python: >=3.7
|
26
|
+
Description-Content-Type: text/markdown
|
27
|
+
Requires-Dist: pyserial>=3.5
|
28
|
+
Requires-Dist: pytest>=7.0
|
29
|
+
Requires-Dist: pytest-html>=3.1
|
30
|
+
Requires-Dist: build>=0.10
|
31
|
+
Requires-Dist: twine>=4.0
|
32
|
+
Requires-Dist: rich>=14.0
|