~ubuntu-branches/ubuntu/trusty/python-jsonrpclib/trusty-proposed

« back to all changes in this revision

Viewing changes to debian/control

  • Committer: Package Import Robot
  • Author(s): Thomas Goirand
  • Date: 2013-06-27 16:40:53 UTC
  • Revision ID: package-import@ubuntu.com-20130627164053-px6oqx7ewky01fae
Tags: 0.1.3-1
Initial release (Closes: #714248).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Source: python-jsonrpclib
 
2
Section: python
 
3
Priority: optional
 
4
Maintainer: PKG OpenStack <openstack-devel@lists.alioth.debian.org>
 
5
Uploaders: Loic Dachary (OuoU) <loic@debian.org>,
 
6
           Julien Danjou <acid@debian.org>,
 
7
           Thomas Goirand <zigo@debian.org>,
 
8
           Ghe Rivero <ghe.rivero@stackops.com>,
 
9
           Mehdi Abaakouk <sileht@sileht.net>
 
10
Build-Depends: debhelper (>= 9), python-setuptools, python-all (>= 2.6.6-3~), openstack-pkg-tools
 
11
Build-Depends-Indep: python-simplejson
 
12
Standards-Version: 3.9.4
 
13
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=openstack/python-jsonrpclib.git
 
14
Vcs-Git: git://anonscm.debian.org/openstack/python-jsonrpclib.git
 
15
Homepage: https://pypi.python.org/pypi/jsonrpclib
 
16
 
 
17
Package: python-jsonrpclib
 
18
Architecture: all
 
19
Pre-Depends: dpkg (>= 1.15.6~)
 
20
Depends: ${python:Depends}, ${misc:Depends}, python-simplejson
 
21
Recommends: ${python:Recommends}
 
22
Description: implementation of the JSON-RPC v2.0 specification
 
23
 This library implements the JSON-RPC 2.0 proposed specification in pure
 
24
 Python. It is designed to be as compatible with the syntax of xmlrpclib as
 
25
 possible (it extends where possible), so that projects using xmlrpclib could
 
26
 easily be modified to use JSON and experiment with the differences.
 
27
 .
 
28
 It is backwards-compatible with the 1.0 specification, and supports all of the
 
29
 new proposed features of 2.0, including:
 
30
  * Batch submission (via MultiCall)
 
31
  * Keyword arguments
 
32
  * Notifications (both in a batch and 'normal')
 
33
  * Class translation using the 'jsonclass' key.