https://github.com/bear/python-twitter
Raw File
Tip revision: a9bbc654c5fe3d277cc195b19d00f0f433822507 authored by Rad on 24 December 2014, 18:59:59 UTC
Moved section up to usage
Tip revision: a9bbc65
python-twitter.spec
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}

Name:           python-twitter
Version:        2.0
Release:        %{?dist}
Summary:        Python Interface for Twitter API

Group:          Development/Libraries
License:        Apache License 2.0
URL:            http://github.com/bear/python-twitter
Source0:        http://python-twitter.googlecode.com/files/%{name}-%{version}.tar.gz
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)

BuildArch:      noarch
Requires:       python >= 2.5, python-simplejson >= 2.0.7
BuildRequires:  python-setuptools


%description
This library provides a pure python interface for the Twitter API.


%prep
%setup -q


%build
%{__python} setup.py build


%install
rm -rf $RPM_BUILD_ROOT
chmod a-x README
%{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT


%clean
rm -rf $RPM_BUILD_ROOT


%files
%defattr(-,root,root,-)
%doc README.rst CHANGES COPYING LICENSE doc/twitter.html
# For noarch packages: sitelib
%{python_sitelib}/*


%changelog
* Sat Mar 22 2008 Steve 'Ashcrow' Milner <me@stevemilner.org> - 0.5-1
- Initial package.
back to top