[py-svn] pytest-codecheckers commit 7dfa0cd9715d: merge - added long description, bumping version number

commits-noreply at bitbucket.org commits-noreply at bitbucket.org
Sat Feb 13 15:01:49 CET 2010


# HG changeset patch -- Bitbucket.org
# Project pytest-codecheckers
# URL http://bitbucket.org/RonnyPfannschmidt/pytest-codecheckers/overview/
# User holger krekel <holger at merlinux.eu>
# Date 1266069688 -3600
# Node ID 7dfa0cd9715dfd9ba4b5018ac86a91926b270bc9
# Parent c550e0cb239426f187108eef8b2d3338d1e47dbc
# Parent a05bf0e0ffa81af4114aa857ec949c5fd6995969
merge - added long description, bumping version number

--- a/setup.py
+++ b/setup.py
@@ -1,10 +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',
-    url='http://bitbucket.org/RonnyPfannschmidt/pytest-pycheckers/',
-    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.Pfannschmidt at gmx.de',
     packages=[



More information about the pytest-commit mailing list