forked from pool/python-rq
57 lines
1.7 KiB
RPMSpec
57 lines
1.7 KiB
RPMSpec
![]() |
#
|
||
|
# spec file for package python-argparse-manpage
|
||
|
#
|
||
|
# Copyright (c) 2018 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/
|
||
|
#
|
||
|
|
||
|
%define mod_name rq
|
||
|
%define skip_python2 1
|
||
|
|
||
|
Name: python-rq
|
||
|
Version: 0.13.0
|
||
|
Release: 0
|
||
|
Summary: Easy Job Queues for Python
|
||
|
License: Apache-2.0
|
||
|
Group: Development/Languages/Python
|
||
|
Url: http://python-rq.org/
|
||
|
Source: %{mod_name}-%{version}.tar.gz
|
||
|
BuildRequires: %{python_module click >= 3.0}
|
||
|
BuildRequires: %{python_module redis >= 3.0.0}
|
||
|
BuildRequires: %{python_module setuptools}
|
||
|
Requires: python-click >= 3.0
|
||
|
Requires: python-redis >= 3.0.0
|
||
|
%python_subpackages
|
||
|
|
||
|
%description
|
||
|
RQ (Redis Queue) is a simple Python library for queueing jobs and processing
|
||
|
them in the background with workers. It is backed by Redis and it is designed
|
||
|
to have a low barrier to entry. It can be integrated in your web stack easily.
|
||
|
|
||
|
%prep
|
||
|
%setup -q -n %{mod_name}-%{version}
|
||
|
|
||
|
%build
|
||
|
%python_build
|
||
|
|
||
|
%install
|
||
|
%python_install
|
||
|
|
||
|
%files %{python_files}
|
||
|
%doc README* PKG-INFO
|
||
|
%{python_sitelib}/*
|
||
|
%{_bindir}/rq*
|
||
|
|
||
|
%changelog
|
||
|
|