File python-django-pluggables.spec of Package python-django-pluggables
# norootforbuild
Name: python-django-pluggables
Version: 0.1.5
Release: 1
Summary: A design pattern that allows you to build "Pluggable" Reusable Applications
License: MIT
Group: Development/Libraries/Python
Source: django-pluggables-%{version}.tar.bz2
URL: http://github.com/nowells/django-pluggables
BuildRequires: python-devel, python-setuptools
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: python-django
%{py_requires}
%description
Django-pluggables is a design pattern for Django that allows you to build "Pluggable" Reusable Applications.
Author:
--------
Nowell Strite <nowell@strite.org>
%prep
%setup -q -n django-pluggables-%{version}
%build
%{__python} setup.py build
%install
%{__python} setup.py install --prefix=%{_prefix} --root=%{buildroot} --record-rpm=INSTALLED_FILES
%files -f INSTALLED_FILES
%defattr(-,root,root)