File python-tinyrpc.spec of Package python-tinyrpc
#
# spec file for package python-tinyrpc
#
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: python-tinyrpc
Version: 0.5
Release: 0
Summary: A small, modular, transport and protocol neutral RPC library
License: MIT
Group: Development/Languages/Python
Url: http://github.com/mbr/tinyrpc
Source: https://pypi.io/packages/t/tinyrpc//tinyrpc-%{version}.tar.gz
BuildRequires: python-devel
BuildRequires: python-setuptools
BuildArch: noarch
%description
As of this writing (in Jan 2013) there are a few jsonrpc_ libraries already out
there on PyPI_, most of them handling one specific use case (e.g. json via
WSGI, using Twisted, or TCP-sockets).
None of the libraries, however, made it easy to reuse the jsonrpc_-parsing bits
and substitute a different transport (i.e. going from json_ via TCP_ to an
implementation using WebSockets_ or 0mq_).
%prep
%setup -q -n tinyrpc-%{version}
%build
python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%files
%doc README.rst
%{python_sitelib}/*
%changelog