Metadata-Version: 2.1
Name: asv
Version: 0.5.1
Summary: Airspeed Velocity: A simple Python history benchmarking tool
Home-page: https://github.com/airspeed-velocity/asv
Author: Michael Droettboom
Author-email: mdroe@stsci.edu
License: BSD
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Testing
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
License-File: LICENSE.rst
Requires-Dist: six>=1.4
Provides-Extra: hg
Requires-Dist: python-hglib>=1.5; extra == "hg"
Provides-Extra: testing
Requires-Dist: virtualenv>=1.7; extra == "testing"
Requires-Dist: filelock; extra == "testing"
Requires-Dist: six; extra == "testing"
Requires-Dist: pip; extra == "testing"
Requires-Dist: setuptools; extra == "testing"
Requires-Dist: wheel; extra == "testing"
Requires-Dist: numpy; extra == "testing"
Requires-Dist: scipy; extra == "testing"
Requires-Dist: selenium; extra == "testing"
Requires-Dist: pytest-xdist; extra == "testing"
Requires-Dist: pytest-timeout; extra == "testing"
Requires-Dist: feedparser; extra == "testing"
Requires-Dist: python-hglib; extra == "testing"
Requires-Dist: pytest>=4.4.0; platform_python_implementation != "PyPy" and extra == "testing"
Requires-Dist: pytest-rerunfailures>=8.0; platform_python_implementation != "PyPy" and extra == "testing"
Requires-Dist: pytest-faulthandler; platform_python_implementation != "PyPy" and extra == "testing"
Requires-Dist: pytest<5.0,>=4.4.0; platform_python_implementation == "PyPy" and extra == "testing"
Requires-Dist: pytest-rerunfailures<9.0,>=8.0; platform_python_implementation == "PyPy" and extra == "testing"
Requires-Dist: pytest-faulthandler<2.0; platform_python_implementation == "PyPy" and extra == "testing"

airspeed velocity
=================

**airspeed velocity** (``asv``) is a tool for benchmarking Python
packages over their lifetime.

It is primarily designed to benchmark a single project over its
lifetime using a given suite of benchmarks.  The results are displayed
in an interactive web frontend that requires only a basic static
webserver to host.

See an `example airspeed velocity site <https://pv.github.io/numpy-bench/>`__.

See the `full documentation <https://asv.readthedocs.io/>`__
for more information.

The latest release can be installed from PyPI using::

    pip install asv

Are you using ``asv``?  Consider adding a badge to your project's
README like this:

.. image:: http://img.shields.io/badge/benchmarked%20by-asv-blue.svg?style=flat

By using the following markdown::

  [![asv](http://img.shields.io/badge/benchmarked%20by-asv-blue.svg?style=flat)](http://your-url-here/)

License: `BSD three-clause license
<http://opensource.org/licenses/BSD-3-Clause>`__.

Authors: Michael Droettboom, Pauli Virtanen
