Skip to content

Commit e03252c

Browse files
authored
Update setup.py
1 parent 1e960f6 commit e03252c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ def readme() -> str:
88
README = f.read()
99
return README
1010

11+
with open('requirements.txt', 'r') as f:
12+
reqs = [line.strip() for line in f]
1113

1214
setup(
1315
name="pywhatkit",
@@ -20,7 +22,7 @@ def readme() -> str:
2022
url="https://github.com/Ankit404butfound/PyWhatKit",
2123
download_url="https://github.com/Ankit404butfound/PyWhatKit/archive/refs/tags/5.2.zip",
2224
keywords=["sendwhatmsg", "info", "playonyt", "search", "watch_tutorial"],
23-
install_requires=["pyautogui", "wikipedia", "requests", "Pillow"],
25+
install_requires=reqs,
2426
package_data={"pywhatkit": ["py.typed"]},
2527
include_package_data=True,
2628
long_description=readme(),

0 commit comments

Comments
 (0)