File python-automaton.spec of Package python-automaton
#
# spec file for package python
#
# 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/
#
%global sname automaton
Name: python-%{sname}
Version: 1.4.0
Release: 0
Summary: Friendly state machines for python
License: Apache-2.0
Group: Development/Languages/Python
Url: https://launchpad/%{sname}
Source0: https://pypi.io/packages/source/a/%{sname}/%{sname}-%{version}.tar.gz
BuildRequires: openstack-macros
BuildRequires: python-PrettyTable >= 0.7
BuildRequires: python-debtcollector >= 1.2.0
BuildRequires: python-devel
BuildRequires: python-oslosphinx >= 2.5.0
BuildRequires: python-oslotest >= 1.10.0
BuildRequires: python-pbr >= 1.6
BuildRequires: python-testrepository >= 0.0.18
BuildRequires: python-testscenarios >= 0.4
BuildRequires: python-testtools >= 1.4.0
Requires: python-PrettyTable >= 0.7
Requires: python-debtcollector >= 1.2.0
Requires: python-pbr >= 1.6
Requires: python-six >= 1.9.0
BuildArch: noarch
%description
Friendly state machines for python.
%package doc
Summary: Documentation for the Automaton Library
Group: Development/Languages/Python
BuildRequires: python-Sphinx
BuildRequires: python-oslosphinx >= 2.5.0
%description doc
Documentation for the Automaton library.
%prep
%setup -q -n %{sname}-%{version}
%build
%py2_build
# generate html docs
%{__python2} setup.py build_sphinx
# remove the Sphinx-build leftovers
rm -rf html/.{doctrees,buildinfo}
%install
%py2_install
%check
PYTHONPATH=. %{__python2} setup.py testr
%files
%doc README.rst
%license LICENSE
%{python2_sitelib}/%{sname}
%{python2_sitelib}/*.egg-info
%files doc
%license LICENSE
%doc doc/build/html
%changelog