|
Revision 3, 0.6 kB
(checked in by Jan-Klaas Kollhof, 3 years ago)
|
added setup.py, fixed some syntax
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
from distutils.core import setup |
|---|
| 4 |
|
|---|
| 5 |
setup(name = "jsonrpc", |
|---|
| 6 |
version = "0.1beta", |
|---|
| 7 |
description = "A json-rpc package which implements JSON-RPC.", |
|---|
| 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 |
This module provides functionality for making JSON-RPC services available through CGI. |
|---|
| 14 |
In addition it provides a mod_python handler for providing services through mod_python which is more perfomant than CGI. |
|---|
| 15 |
There is also some "JSON-RPC over sockets" implementation. |
|---|
| 16 |
""", |
|---|
| 17 |
packages = ['jsonrpc'] |
|---|
| 18 |
) |
|---|