Skip to content

Commit 40ee807

Browse files
authored
Merge pull request mps-youtube#585 from glensc/url-update
update url
2 parents 79659b0 + e773f51 commit 40ee807

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

mps_youtube/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
__notes__ = "released 6 July 2016"
33
__author__ = "np1"
44
__license__ = "GPLv3"
5-
__url__ = "http://github.com/np1/mps-youtube"
5+
__url__ = "https://github.com/mps-youtube/mps-youtube"
66

77
from . import init
88
init.init()

mps_youtube/g.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
commands = []
7373

7474
text = {
75-
"exitmsg": ("*mps-youtube - *http://github.com/np1/mps-youtube*"
75+
"exitmsg": ("*mps-youtube - *https://github.com/mps-youtube/mps-youtube*"
7676
"\nReleased under the GPLv3 license\n"
7777
"(c) 2014, 2015 np1 and contributors*\n"""),
7878
"exitmsg_": (c.r, c.b, c.r, c.w),

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,17 @@
1515

1616
from setuptools import setup
1717

18+
VERSION = "0.2.7.1"
19+
1820
options = dict(
1921
name="mps-youtube",
20-
version="0.2.7.1",
22+
version=VERSION,
2123
description="Terminal based YouTube player and downloader",
2224
keywords=["video", "music", "audio", "youtube", "stream", "download"],
2325
author="np1",
2426
author_email="[email protected]",
25-
url="http://github.com/np1/mps-youtube",
26-
download_url="https://github.com/np1/mps-youtube/tarball/master",
27+
url="https://github.com/mps-youtube/mps-youtube",
28+
download_url="https://github.com/mps-youtube/mps-youtube/archive/v%s.tar.gz" % VERSION
2729
packages=['mps_youtube', 'mps_youtube.commands'],
2830
entry_points={'console_scripts': ['mpsyt = mps_youtube:main.main']},
2931
install_requires=['pafy >= 0.3.82, != 0.4.0, != 0.4.1, != 0.4.2'],

0 commit comments

Comments
 (0)