testing: add vcttesting to virtualenv
The support modules in the vcttesting package are becoming increasingly
popular. This directory currently must be manually added to sys.path.
This is annoying.
This patch adds packaging to vcttesting so it is available in our
virtualenv.
Scripts manually adding the testing directory to sys.path have been
updated to no longer do this.
Metadata-Version: 1.1
Name: pyflakes
Version: 0.7.3
Summary: passive checker of Python programs
Home-page: https://launchpad.net/pyflakes
Author: Florent Xicluna
Author-email: pyflakes-dev@lists.launchpad.net
License: MIT
Description: ========
Pyflakes
========
A simple program which checks Python source files for errors.
Pyflakes analyzes programs and detects various errors. It works by
parsing the source file, not importing it, so it is safe to use on
modules with side effects. It's also much faster.
It is `available on PyPI <http://pypi.python.org/pypi/pyflakes>`_
and it supports all active versions of Python from 2.5 to 3.3.
Installation
------------
It can be installed with::
$ pip install --upgrade pyflakes
Mailing-list
------------
Share your feedback and ideas: `subscribe to the mailing-list
<http://mail.python.org/mailman/listinfo/code-quality>`_
.. image:: https://api.travis-ci.org/pyflakes/pyflakes.png
:target: https://travis-ci.org/pyflakes/pyflakes
:alt: Build status
Platform: UNKNOWN
Classifier: Development Status :: 6 - Mature
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities