File python-webcolors.spec of Package python-webcolors
#
# spec file for package python-webcolors
#
# Copyright (c) 2015 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 srcname webcolors
Name: python-%{srcname}
Version: 1.4
Release: 0
Summary: A library for working with HTML and CSS color names
License: BSD-3-Clause
Group: Development/Languages/Python
Url: http://www.bitbucket.org/ubernostrum/webcolors/overview/
Source0: https://bitbucket.org/ubernostrum/webcolors/downloads/%{srcname}-%{version}.tar.gz
BuildRequires: python-base
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
%description
Support is included for the following formats (RGB colorspace only;
conversion to/from HSL can be handled by the colorsys module in the Python
standard library):
* Specification-defined color names
* Six-digit hexadecimal
* Three-digit hexadecimal
* Integer rgb() triplet
* Percentage rgb() triplet
%prep
%setup -q -n %{srcname}-%{version}
%build
python setup.py build
%install
python setup.py install \
--prefix=%{_prefix} \
--root=%{buildroot}
%files
%defattr(-,root,root)
%doc LICENSE PKG-INFO README
%{python_sitelib}/%{srcname}*
%changelog