root/trunk/python-jsonrpc/setup.py

Revision 11, 389 bytes (checked in by Jan-Klaas Kollhof, 2 years ago)

adding CGI wrapper, to easily turn CGI scripts into services

Line 
1 #!/usr/bin/env python
2
3 from distutils.core import setup
4
5 setup(name = "jsonrpc",
6     version = "0.01",
7     description = "A json-rpc package which implements JSON-RPC over HTTP.",
8     keywords = "JSON RPC",
9     author = "Jan-Klaas Kollhof",
10     url = "http://json-rpc.org/wiki/python-json-rpc",
11     license = "LGPL",
12     long_description = """""",
13     packages = ['jsonrpc']
14 )
Note: See TracBrowser for help on using the browser.