Metadata-Version: 1.1
Name: aur
Version: 0.9.2
Summary: Arch User Repository API interface.
Home-page: https://github.com/cdown/aur
Author: Chris Down
Author-email: chris@chrisdown.name
License: ISC
Description: |Build status| |Coverage| |Code quality| |Dependencies|
        
        aur is a Python library that makes it easy to access and parse data
        from the `Arch User Repository API`_.
        
        .. code:: python
        
            >>> import aur
            >>> list(aur.search("yturl"))
            [<Package: 'yturl-git'>, <Package: 'yturl'>]
            >>> package = aur.info("cower")
            >>> package.description
            'A simple AUR agent with a pretentious name'
        
        Installation
        ------------
        
        ::
        
            $ pip install aur
        
        Installing dependencies
        -----------------------
        
        If you install by `pip`_, these will be installed automatically, but
        otherwise:
        
        ::
        
            $ pip install -r requirements.txt
        
        Testing
        -------
        
        ::
        
            $ pip install -r tests/requirements.txt
            $ nosetests
        
        License
        -------
        
        aur is `ISC licensed`_. See the LICENSE file for full details.
        
        .. _Arch User Repository API: https://wiki.archlinux.org/index.php/AurJson
        .. _pip: https://pypi.python.org/pypi/pip
        .. _ISC licensed: http://en.wikipedia.org/wiki/ISC_license
        
        .. |Build status| image:: https://img.shields.io/travis/cdown/aur/master.svg
           :target: https://travis-ci.org/cdown/aur
        .. |Coverage| image:: https://img.shields.io/coveralls/cdown/aur/master.svg
           :target: https://coveralls.io/r/cdown/aur
        .. |Code quality| image:: https://img.shields.io/scrutinizer/g/cdown/aur.svg
           :target: https://scrutinizer-ci.com/g/cdown/aur/code-structure/master/hot-spots
        .. |Dependencies| image:: https://img.shields.io/requires/github/cdown/aur.svg
           :target: https://requires.io/github/cdown/aur/requirements/?branch=master
        
Keywords: aur arch linux
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
