Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 57451b8

Browse files
committed
Bump version to 0.6.3.
Fix README.rst. Export long_description in setup.py. This is to upload to pypi with twine.
1 parent d28a744 commit 57451b8

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ we will expose the Python "time" module::
3636
.. note::
3737
The bind address uses the zeromq address format. You are not limited
3838
to TCP transport: you could as well specify ipc:///tmp/time to use
39-
host-local sockets, for instance. "tcp://*:1234" is a short-hand to
39+
host-local sockets, for instance. "tcp://\*:1234" is a short-hand to
4040
"tcp://0.0.0.0:1234" and means "listen on TCP port 1234, accepting
4141
connections on all IP addresses".
4242

@@ -137,7 +137,7 @@ the "--bind" option::
137137

138138
$ zerorpc --server --bind tcp://*:1234 --bind ipc:///tmp/time time
139139

140-
You can then connect to it using either "zerorpc tcp://*:1234" or
140+
You can then connect to it using either "zerorpc tcp://\*:1234" or
141141
"zerorpc ipc:///tmp/time".
142142

143143
Wait, there is more! You can even mix "--bind" and "--connect". That means

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,15 @@
5151
else:
5252
requirements.append('gevent>=1.1')
5353

54+
with open("README.rst", "r") as fh:
55+
long_description = fh.read()
5456

5557
setup(
5658
name='zerorpc',
5759
version=__version__,
5860
description='zerorpc is a flexible RPC based on zeromq.',
61+
long_description=long_description,
62+
long_description_content_type='text/x-rst',
5963
author=__author__,
6064
url='https://github.com/0rpc/zerorpc-python',
6165
packages=['zerorpc'],

zerorpc/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# SOFTWARE.
2424

2525
__title__ = 'zerorpc'
26-
__version__ = '0.6.2'
26+
__version__ = '0.6.3'
2727
__author__ = 'François-Xavier Bourlet <[email protected]>.'
2828
__license__ = 'MIT'
2929
__copyright__ = 'Copyright 2015 François-Xavier Bourlet <[email protected]>.'

0 commit comments

Comments
 (0)