# HG changeset patch -- Bitbucket.org # Project pytest-codecheckers # URL http://bitbucket.org/RonnyPfannschmidt/pytest-codecheckers/overview/ # User holger krekel <hol...@merlinux.eu> # Date 1266069524 -3600 # Node ID a05bf0e0ffa81af4114aa857ec949c5fd6995969 # Parent 4f8cb3a4a8cb6844595c8e2ec982ab4e55b4b22a adding a longer description, the py>=1.2.0 dependency and bumping the version number, hope that's fine with ronny.
--- a/setup.py +++ b/setup.py @@ -1,9 +1,25 @@ +""" +py.test plugin for checking PEP8 source code compliance using pyflakes. + +Usage +--------- + +after installation (e.g. via ``pip install pytest-codecheckers``) you can type:: + + py.test [path/to/mypkg] + +which will automatically perform source code sanity checks. If you have +further questions please send them to the `pytest-dev`_ mailing list. + +.. _`pytest-dev`: http://codespeak.net/mailman/listinfo/py-dev +""" from setuptools import setup setup( name='pytest-codecheckers', - description='pytest addon to add code-checking as source for testcases', - version='0.1', + description='pytest plugin to add source code sanity checks (pep8 and friends)', + long_description=__doc__, + version='0.2', author='Ronny Pfannschmidt', author_email='ronny.pfannschm...@gmx.de', packages=[ @@ -21,5 +37,6 @@ setup( install_requires=[ 'pyflakes>=0.4', 'pep8', + 'py>=1.2.0', ], ) _______________________________________________ py-svn mailing list py-svn@codespeak.net http://codespeak.net/mailman/listinfo/py-svn