File tree Expand file tree Collapse file tree 5 files changed +33
-3
lines changed Expand file tree Collapse file tree 5 files changed +33
-3
lines changed Original file line number Diff line number Diff line change 1
1
* .pyc
2
2
build /*
3
+ dist /*
Original file line number Diff line number Diff line change
1
+ Licensed under the Apache License, Version 2.0 (the "License");
2
+ you may not use this file except in compliance with the License.
3
+ You may obtain a copy of the License at
4
+
5
+ http://www.apache.org/licenses/LICENSE-2.0
6
+
7
+ Unless required by applicable law or agreed to in writing, software
8
+ distributed under the License is distributed on an "AS IS" BASIS,
9
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10
+ See the License for the specific language governing permissions and
11
+ limitations under the License.
Original file line number Diff line number Diff line change
1
+ include *.txt
Original file line number Diff line number Diff line change @@ -42,6 +42,22 @@ should already have one. Keep in mind that cjson is supposed to be the
42
42
quickest, I believe, so if you are going for full-on optimization you may
43
43
want to pick it up.
44
44
45
+ Installation
46
+ ------------
47
+ You can install this from PyPI with one of the following commands (sudo
48
+ may be required):
49
+
50
+ easy_install jsonrpclib
51
+ pip install jsonrpclib
52
+
53
+ Alternatively, you can download the source from the github repository
54
+ at http://github.com/joshmarshall/jsonrpclib and manually install it
55
+ with the following commands:
56
+
57
+ git clone git://github.com/joshmarshall/jsonrpclib.git
58
+ cd jsonrpclib
59
+ python setup.py install
60
+
45
61
Client Usage
46
62
------------
47
63
@@ -200,4 +216,4 @@ You can run it with:
200
216
TODO
201
217
----
202
218
* Use HTTP error codes on SimpleJSONRPCServer
203
- * Test, test, test and optimize
219
+ * Test, test, test and optimize
Original file line number Diff line number Diff line change 17
17
18
18
distutils .core .setup (
19
19
name = "jsonrpclib" ,
20
- version = "0.13 " ,
20
+ version = "0.1.3 " ,
21
21
packages = ["jsonrpclib" ],
22
22
author = "Josh Marshall" ,
23
23
author_email = "[email protected] " ,
24
- url = "http://code.google. com/p /jsonrpclib/" ,
24
+ url = "http://github. com/joshmarshall /jsonrpclib/" ,
25
25
license = "http://www.apache.org/licenses/LICENSE-2.0" ,
26
26
description = "This project is an implementation of the JSON-RPC v2.0 " +
27
27
"specification (backwards-compatible) as a client library." ,
28
+ long_description = open ("README.md" ).read ()
28
29
)
You can’t perform that action at this time.
0 commit comments