File tree 3 files changed +7
-3
lines changed
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ we will expose the Python "time" module::
36
36
.. note ::
37
37
The bind address uses the zeromq address format. You are not limited
38
38
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
40
40
"tcp://0.0.0.0:1234" and means "listen on TCP port 1234, accepting
41
41
connections on all IP addresses".
42
42
@@ -137,7 +137,7 @@ the "--bind" option::
137
137
138
138
$ zerorpc --server --bind tcp://*:1234 --bind ipc:///tmp/time time
139
139
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
141
141
"zerorpc ipc:///tmp/time".
142
142
143
143
Wait, there is more! You can even mix "--bind" and "--connect". That means
Original file line number Diff line number Diff line change 51
51
else :
52
52
requirements .append ('gevent>=1.1' )
53
53
54
+ with open ("README.rst" , "r" ) as fh :
55
+ long_description = fh .read ()
54
56
55
57
setup (
56
58
name = 'zerorpc' ,
57
59
version = __version__ ,
58
60
description = 'zerorpc is a flexible RPC based on zeromq.' ,
61
+ long_description = long_description ,
62
+ long_description_content_type = 'text/x-rst' ,
59
63
author = __author__ ,
60
64
url = 'https://github.com/0rpc/zerorpc-python' ,
61
65
packages = ['zerorpc' ],
Original file line number Diff line number Diff line change 23
23
# SOFTWARE.
24
24
25
25
__title__ = 'zerorpc'
26
- __version__ = '0.6.2 '
26
+ __version__ = '0.6.3 '
27
27
__author__ = 'François-Xavier Bourlet <[email protected] >.'
28
28
__license__ = 'MIT'
29
29
__copyright__ = 'Copyright 2015 François-Xavier Bourlet <[email protected] >.'
You can’t perform that action at this time.
0 commit comments