pytest-runner
=============

Setup scripts can use pytest-runner to add setup.py test support for pytest
runner.

Recommended usage
-----------------

- add 'pytest-runner' to your 'setup_requires'
- include 'pytest' and any other testing requirements to 'tests_require'
- invoke tests with setup.py ptr

Alternate usage
---------------

- include this file (ptr.py) in your repo
- add these lines to your setup.py::

	execfile('ptr.py')
	setup_params = PyTest.install(dict(...))
	setuptools.setup(**setup_params)

  Where '...' are your normal keyword parameters to setup()

- invoke your tests with setup.py test

Changes
-------

1.0
~~~

Initial implementation.
