diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2012-05-06 10:39:56 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2012-05-06 10:39:56 -0400 |
commit | 0b6df53304d86e78bd0f1524a4dec419913d00cf (patch) | |
tree | c49f456c3d028649d56cd003f0510a8e6ef1852d | |
parent | d4e8fd23a689318b5b80e2780e72437576636772 (diff) | |
download | pytest-runner-0b6df53304d86e78bd0f1524a4dec419913d00cf.tar.gz |
An initial attempt to create a pytest runner that's invoked on entry points
-rw-r--r-- | pytest-runner/__init__.py | 0 | ||||
-rw-r--r-- | pytest-runner/command.py (renamed from command.py) | 0 | ||||
-rw-r--r-- | setup.py | 22 |
3 files changed, 22 insertions, 0 deletions
diff --git a/pytest-runner/__init__.py b/pytest-runner/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/pytest-runner/__init__.py diff --git a/command.py b/pytest-runner/command.py index a9481a7..a9481a7 100644 --- a/command.py +++ b/pytest-runner/command.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..d33b450 --- /dev/null +++ b/setup.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +# Generated by jaraco.develop (https://bitbucket.org/jaraco/jaraco.develop) +import setuptools + +setup_params = dict( + name='pytest-runner', + use_hg_version=True, + author="Jason R. Coombs", + author_email="jaraco@jaraco.com", + url="https://bitbucket.org/jaraco/pytest-runner", + packages=setuptools.find_packages(), + zip_safe=True, + entry_points = { + 'distutils.commands': + ['test = pytest-runner.command:PyTest'], + }, + setup_requires=[ + 'hgtools', + ], +) +if __name__ == '__main__': + setuptools.setup(**setup_params) |