AnalogSensePy 1.0.1__tar.gz → 1.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: AnalogSensePy
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Requires-Python: >=3.10
5
5
  License-File: LICENSE
6
6
  Requires-Dist: hidapi
@@ -10,5 +10,4 @@ analogsense/__init__.py
10
10
  analogsense/analogsense.py
11
11
  analogsense/keymaps.py
12
12
  analogsense/layouts.py
13
- analogsense/providers.py
14
- analogsense/setup.py
13
+ analogsense/providers.py
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: AnalogSensePy
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Requires-Python: >=3.10
5
5
  License-File: LICENSE
6
6
  Requires-Dist: hidapi
@@ -25,7 +25,6 @@ Python port of [AnalogSense.js](https://github.com/AnalogSense/JavaScript-SDK/)
25
25
 
26
26
  ## Installation
27
27
  ```bash
28
- pip install hid
29
28
  pip install AnalogSensePy
30
29
  ```
31
30
  On Linux you may need udev rules or `sudo` for hid
@@ -10,7 +10,7 @@ try:
10
10
  _HID_AVAILABLE = True
11
11
  except ImportError:
12
12
  _HID_AVAILABLE = False
13
- warnings.warn("'hid' is not installed. you can install it with: pip install hid")
13
+ warnings.warn("'hidapi' is not installed. you can install it with: pip install hidapi")
14
14
 
15
15
 
16
16
  class DeviceHandle:
@@ -4,6 +4,6 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "AnalogSensePy"
7
- version = "1.0.1"
7
+ version = "1.0.2"
8
8
  requires-python = ">=3.10"
9
9
  dependencies = ["hidapi"]
@@ -1,10 +0,0 @@
1
- from setuptools import setup, find_packages
2
-
3
- setup(
4
- name="analogsense",
5
- version="1.0.0",
6
- description="Python port of the AnalogSense JavaScript SDK",
7
- packages=find_packages(),
8
- python_requires=">=3.10",
9
- install_requires=["hid"],
10
- )
File without changes
File without changes