File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
143143Wait, there is more! You can even mix "--bind" and "--connect". That means
Original file line number Diff line number Diff line change 5151else :
5252 requirements .append ('gevent>=1.1' )
5353
54+ with open ("README.rst" , "r" ) as fh :
55+ long_description = fh .read ()
5456
5557setup (
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' ],
Original file line number Diff line number Diff line change 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] >.'
You can’t perform that action at this time.
0 commit comments