smemhack 5.8__tar.gz → 5.8.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.
- {smemhack-5.8/smemhack.egg-info → smemhack-5.8.2}/PKG-INFO +2 -2
- {smemhack-5.8 → smemhack-5.8.2}/setup.py +9 -9
- {smemhack-5.8 → smemhack-5.8.2}/smemhack/__init__.py +1 -1
- {smemhack-5.8 → smemhack-5.8.2}/smemhack/main.py +1 -1
- {smemhack-5.8 → smemhack-5.8.2/smemhack.egg-info}/PKG-INFO +2 -2
- smemhack-5.8.2/smemhack.egg-info/requires.txt +7 -0
- smemhack-5.8/smemhack.egg-info/requires.txt +0 -7
- {smemhack-5.8 → smemhack-5.8.2}/LICENSE.txt +0 -0
- {smemhack-5.8 → smemhack-5.8.2}/README.md +0 -0
- {smemhack-5.8 → smemhack-5.8.2}/setup.cfg +0 -0
- {smemhack-5.8 → smemhack-5.8.2}/smemhack.egg-info/SOURCES.txt +0 -0
- {smemhack-5.8 → smemhack-5.8.2}/smemhack.egg-info/dependency_links.txt +0 -0
- {smemhack-5.8 → smemhack-5.8.2}/smemhack.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: smemhack
|
3
|
-
Version: 5.8
|
3
|
+
Version: 5.8.2
|
4
4
|
Summary: A Python library to automate online homework tasks with AI and system control.
|
5
5
|
Home-page: UNKNOWN
|
6
6
|
Author: Dickily
|
@@ -55,5 +55,5 @@ Classifier: License :: Other/Proprietary License
|
|
55
55
|
Classifier: Programming Language :: Python :: 3
|
56
56
|
Classifier: Programming Language :: Python :: 3.8
|
57
57
|
Classifier: Operating System :: OS Independent
|
58
|
-
Requires-Python: >=3.
|
58
|
+
Requires-Python: >=3.8.18
|
59
59
|
Description-Content-Type: text/markdown
|
@@ -6,16 +6,16 @@ with open("README.md", "r", encoding="utf-8") as f:
|
|
6
6
|
|
7
7
|
setup(
|
8
8
|
name="smemhack",
|
9
|
-
version="5.8",
|
9
|
+
version="5.8.2",
|
10
10
|
packages=find_packages(),
|
11
11
|
install_requires=[
|
12
|
-
"tensorflow",
|
13
|
-
"pyautogui",
|
14
|
-
"pyperclip",
|
15
|
-
"numpy",
|
16
|
-
"keyboard",
|
17
|
-
"fuzzywuzzy",
|
18
|
-
"python-Levenshtein"
|
12
|
+
"tensorflow>=2.8.0", # Require TensorFlow version 2.8.0 or newer
|
13
|
+
"pyautogui>=0.9.53", # Require PyAutoGUI version 0.9.53 or newer
|
14
|
+
"pyperclip>=1.8.2", # Require Pyperclip version 1.8.2 or newer
|
15
|
+
"numpy>=1.20.0", # Require NumPy version 1.20.0 or newer
|
16
|
+
"keyboard>=0.13.5", # Require Keyboard package version 0.13.5 or newer
|
17
|
+
"fuzzywuzzy>=0.18.0", # Require FuzzyWuzzy version 0.18.0 or newer
|
18
|
+
"python-Levenshtein>=0.12.2" # Require Python-Levenshtein version 0.12.2 or newer
|
19
19
|
],
|
20
20
|
description="A Python library to automate online homework tasks with AI and system control.",
|
21
21
|
long_description=long_description, # Use README.md for the description
|
@@ -29,5 +29,5 @@ setup(
|
|
29
29
|
"Programming Language :: Python :: 3.8",
|
30
30
|
"Operating System :: OS Independent",
|
31
31
|
],
|
32
|
-
python_requires=">=3.
|
32
|
+
python_requires=">=3.8.18", # Require Python 3.8.18 or newer
|
33
33
|
)
|
@@ -1,2 +1,2 @@
|
|
1
1
|
from .main import *
|
2
|
-
__version__="5.8"
|
2
|
+
__version__="5.8.2"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: smemhack
|
3
|
-
Version: 5.8
|
3
|
+
Version: 5.8.2
|
4
4
|
Summary: A Python library to automate online homework tasks with AI and system control.
|
5
5
|
Home-page: UNKNOWN
|
6
6
|
Author: Dickily
|
@@ -55,5 +55,5 @@ Classifier: License :: Other/Proprietary License
|
|
55
55
|
Classifier: Programming Language :: Python :: 3
|
56
56
|
Classifier: Programming Language :: Python :: 3.8
|
57
57
|
Classifier: Operating System :: OS Independent
|
58
|
-
Requires-Python: >=3.
|
58
|
+
Requires-Python: >=3.8.18
|
59
59
|
Description-Content-Type: text/markdown
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|