Add long_description to setup.py utilizing readme.rst
This commit is contained in:
parent
f3926579dd
commit
cb0040f3d7
|
@ -27,7 +27,7 @@ git clone https://github.com/sivel/speedtest-cli.git
|
||||||
python speedtest-cli/setup.py
|
python speedtest-cli/setup.py
|
||||||
```
|
```
|
||||||
|
|
||||||
### Just download (just like the way it was)
|
### Just download (Like the way it used to be)
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
wget -O speedtest-cli https://raw.github.com/sivel/speedtest-cli/master/speedtest_cli.py
|
wget -O speedtest-cli https://raw.github.com/sivel/speedtest-cli/master/speedtest_cli.py
|
||||||
|
|
|
@ -33,8 +33,8 @@ or
|
||||||
git clone https://github.com/sivel/speedtest-cli.git
|
git clone https://github.com/sivel/speedtest-cli.git
|
||||||
python speedtest-cli/setup.py
|
python speedtest-cli/setup.py
|
||||||
|
|
||||||
Just download (just like the way it was)
|
Just download (Like the way it used to be)
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
|
|
1
setup.py
1
setup.py
|
@ -7,6 +7,7 @@ setuptools.setup(
|
||||||
version='0.2.1',
|
version='0.2.1',
|
||||||
description=('Command line interface for testing internet bandwidth using '
|
description=('Command line interface for testing internet bandwidth using '
|
||||||
'speedtest.net'),
|
'speedtest.net'),
|
||||||
|
long_description=open('README.rst').read(),
|
||||||
author='Matt Martz',
|
author='Matt Martz',
|
||||||
author_email='matt@sivel.net',
|
author_email='matt@sivel.net',
|
||||||
url='https://github.com/sivel/speedtest-cli',
|
url='https://github.com/sivel/speedtest-cli',
|
||||||
|
|
Loading…
Reference in New Issue