PyKeyeasy 1.0.0__tar.gz → 1.0.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PyKeyeasy
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: Ultra-simple keyboard detection with automatic variables
5
5
  Home-page: https://github.com/emicics/PyKeys
6
6
  Author: Emiliano
@@ -12,8 +12,6 @@ Requires-Python: >=3.6
12
12
  Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
14
  Requires-Dist: keyboard
15
- Requires-Dist: threading
16
- Requires-Dist: time
17
15
  Dynamic: author
18
16
  Dynamic: classifier
19
17
  Dynamic: description
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PyKeyeasy
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: Ultra-simple keyboard detection with automatic variables
5
5
  Home-page: https://github.com/emicics/PyKeys
6
6
  Author: Emiliano
@@ -12,8 +12,6 @@ Requires-Python: >=3.6
12
12
  Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
14
  Requires-Dist: keyboard
15
- Requires-Dist: threading
16
- Requires-Dist: time
17
15
  Dynamic: author
18
16
  Dynamic: classifier
19
17
  Dynamic: description
@@ -0,0 +1 @@
1
+ keyboard
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="PyKeyeasy", # You can use a unique name here
5
- version="1.0.0",
5
+ version="1.0.1",
6
6
  author="Emiliano",
7
7
  description="Ultra-simple keyboard detection with automatic variables",
8
8
  long_description=open("README.md").read(),
@@ -10,9 +10,7 @@ setup(
10
10
  url="https://github.com/emicics/PyKeys",
11
11
  packages=find_packages(),
12
12
  install_requires=[
13
- "keyboard",
14
- "threading",
15
- "time"
13
+ "keyboard"
16
14
  ],
17
15
  classifiers=[
18
16
  "Programming Language :: Python :: 3",
@@ -1,3 +0,0 @@
1
- keyboard
2
- threading
3
- time
File without changes
File without changes
File without changes
File without changes
File without changes