From 2ed3f21055a9124100a8f83439a734f19b679076 Mon Sep 17 00:00:00 2001 From: Wukong Date: Wed, 8 Sep 2021 20:54:56 -0700 Subject: [PATCH] Update the url links in setup.py files 1. The url for jmqtui should be `/jmqtui`, not `/jmfg`. 2. All the urls in setup.py must specify `tree/master` as part of the url, otherwise the links can no longer be opened. 3. All the urls in setup.py should use `https` instead of `http`, even though GitHub will auto redirect the request to use `https`. 4. Use `JoinMarket-Org` instead of `Joinmarket-Org` in the url links for better consistency, even though it doesn't affect the effectiveness of the link. --- jmbase/setup.py | 2 +- jmbitcoin/setup.py | 2 +- jmclient/setup.py | 2 +- jmdaemon/setup.py | 2 +- jmqtui/setup.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/jmbase/setup.py b/jmbase/setup.py index e9a70d0..6d0e4c4 100644 --- a/jmbase/setup.py +++ b/jmbase/setup.py @@ -4,7 +4,7 @@ from setuptools import setup setup(name='joinmarketbase', version='0.9.2dev', description='Joinmarket client library for Bitcoin coinjoins', - url='http://github.com/Joinmarket-Org/joinmarket-clientserver/jmbase', + url='https://github.com/JoinMarket-Org/joinmarket-clientserver/tree/master/jmbase', author='', author_email='', license='GPL', diff --git a/jmbitcoin/setup.py b/jmbitcoin/setup.py index b68f379..c231e2d 100644 --- a/jmbitcoin/setup.py +++ b/jmbitcoin/setup.py @@ -4,7 +4,7 @@ from setuptools import setup setup(name='joinmarketbitcoin', version='0.9.2dev', description='Joinmarket client library for Bitcoin coinjoins', - url='http://github.com/Joinmarket-Org/joinmarket-clientserver/jmbitcoin', + url='https://github.com/JoinMarket-Org/joinmarket-clientserver/tree/master/jmbitcoin', author='', author_email='', license='GPL', diff --git a/jmclient/setup.py b/jmclient/setup.py index cce4d71..83e8cc1 100644 --- a/jmclient/setup.py +++ b/jmclient/setup.py @@ -4,7 +4,7 @@ from setuptools import setup setup(name='joinmarketclient', version='0.9.2dev', description='Joinmarket client library for Bitcoin coinjoins', - url='http://github.com/Joinmarket-Org/joinmarket-clientserver/jmclient', + url='https://github.com/JoinMarket-Org/joinmarket-clientserver/tree/master/jmclient', author='', author_email='', license='GPL', diff --git a/jmdaemon/setup.py b/jmdaemon/setup.py index 581a7d1..fd66285 100644 --- a/jmdaemon/setup.py +++ b/jmdaemon/setup.py @@ -4,7 +4,7 @@ from setuptools import setup setup(name='joinmarketdaemon', version='0.9.2dev', description='Joinmarket client library for Bitcoin coinjoins', - url='http://github.com/Joinmarket-Org/joinmarket-clientserver/jmdaemon', + url='https://github.com/JoinMarket-Org/joinmarket-clientserver/tree/master/jmdaemon', author='', author_email='', license='GPL', diff --git a/jmqtui/setup.py b/jmqtui/setup.py index a1f6fe1..0de1d7c 100644 --- a/jmqtui/setup.py +++ b/jmqtui/setup.py @@ -4,7 +4,7 @@ import os setup(name='joinmarketui', version='0.9.2dev', description='Joinmarket client library for Bitcoin coinjoins', - url='http://github.com/Joinmarket-Org/joinmarket-clientserver/jmfg', + url='https://github.com/JoinMarket-Org/joinmarket-clientserver/tree/master/jmqtui', author='', author_email='', license='GPL',