Browse Source

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.
master
Wukong 4 years ago
parent
commit
2ed3f21055
  1. 2
      jmbase/setup.py
  2. 2
      jmbitcoin/setup.py
  3. 2
      jmclient/setup.py
  4. 2
      jmdaemon/setup.py
  5. 2
      jmqtui/setup.py

2
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',

2
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',

2
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',

2
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',

2
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',

Loading…
Cancel
Save