Metadata-Version: 2.1
Name: pkgwat.api
Version: 0.13
Summary: Python API for querying the fedora packages webapp
Home-page: http://github.com/fedora-infra/pkgwat.api
Author: Ralph Bean
Author-email: rbean@redhat.com
License: LGPLv2+
Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: System :: Archiving :: Packaging
Classifier: Development Status :: 4 - Beta
License-File: LICENSE



Python API for `pkgwat <http://pypi.python.org/pypi/pkgwat.cli>`_.

Documentation:  http://pkgwat.rtfd.org


Setting up development environment
----------------------------------

Make sure you have ``virtualenv`` installed and create a new venv::

  $ virtualenv env
  $ source env/bin/activate
  $ pip install -e .


Running the test suite
----------------------

Make sure you have ``tox`` installed and run it (outside of any virtualenv)::

  $ tox


Cutting a new release
---------------------

In order to generate a list of changes to be placed into ``CHANGELOG.rst``, use
the following command (this example generates the log between ``0.12`` and
``HEAD`` refs)::

  git log --reverse --format=format:'- %s `%h <https://github.com/fedora-infra/pkgwat.api/commit/%H>`_' 0.12..HEAD
