Summary: Lightweight WSGI Python Web Framework Name: python-bottle Version: 0.9.6 Release: 1%{?dist} License: MIT Group: Development/Libraries URL: http://bottlepy.org/ Source0: http://pypi.python.org/packages/source/b/bottle/bottle-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildArch: noarch %description Bottle is a fast and simple micro-framework for small web-applications. It offers request dispatching (Routes) with url parameter support, Templates, a built-in HTTP Server and adapters for many third party WSGI/HTTP-servers and template engines. All in a single file and with no dependencies other than the Python Standard Library. %prep %setup -q -n bottle-%{version} %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc LICENSE.txt README.rst %{python_sitelib}/bottle.py* %{python_sitelib}/bottle-*.egg-info/ %changelog * Mon Sep 5 2011 Matthias Saou 0.9.6-1 - Initial RPM release.