-
Notifications
You must be signed in to change notification settings - Fork 643
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update project URL and version maintenance (#1262)
* Update project URL * Update __version__ in setup.py This suppresses the update notifications * help new: more accurate helptext `help new` doesn't actually check whether there's a new version, it shows the changelog for the latest release no matter what. Update helptext to reflect this.
- Loading branch information
Showing
7 changed files
with
17 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
""" setup.py for yewtube. | ||
https://github.com/iamtalhaasghar/yewtube | ||
https://github.com/mps-youtube/yewtube | ||
python setup.py sdist bdist_wheel | ||
""" | ||
|
@@ -21,7 +21,7 @@ | |
with open('requirements.txt', 'r') as fh: | ||
requirements = fh.readlines() | ||
|
||
__version__ = "2.10.4" | ||
__version__ = "2.10.5" | ||
|
||
options = dict( | ||
name="yewtube", | ||
|
@@ -30,8 +30,8 @@ | |
keywords=["video", "music", "audio", "youtube", "stream", "download"], | ||
author="talha_programmer", | ||
author_email="[email protected]", | ||
url="https://github.com/iamtalhaasghar/yewtube", | ||
download_url="https://github.com/iamtalhaasghar/yewtube/releases", | ||
url="https://github.com/mps-youtube/yewtube", | ||
download_url="https://github.com/mps-youtube/yewtube/releases", | ||
packages=['mps_youtube', 'mps_youtube.commands', 'mps_youtube.listview', 'mps_youtube.players'], | ||
entry_points={'console_scripts': ['yt = mps_youtube:main.main']}, | ||
python_requires='>=3.6', | ||
|