summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setup.py20
1 files changed, 12 insertions, 8 deletions
diff --git a/setup.py b/setup.py
index e17384e..c0a1e9b 100644
--- a/setup.py
+++ b/setup.py
@@ -1,15 +1,20 @@
1#from distutils import setup 1#!/usr/bin/env python
2"""
3Changes output of the nose testing tool into format easily parsable
4by a machine.
5
6Originally written by Max Ischenko.
7"""
8
2from setuptools import setup 9from setuptools import setup
3 10
4setup( 11setup(
5 name="nose_machineout", 12 name="nose_machineout",
6 version="0.2", 13 version="0.2",
7 description="""\ 14 description=__doc__,
8Changes output of the nose testing tool into format easily parsable by machine.""", 15 author="Mike Crute",
9 author="Max Ischenko", 16 author_email="mcrute@gmail.com",
10 author_email="ischenko@gmail.com", 17 url="http://bitbucket.org/mcrute/nose_machineout",
11 url="http://maxischenko.in.ua/blog/entries/109/nose-vim-integration",
12 download_url="http://cheeseshop.python.org/pypi/nose_machineout/0.1",
13 install_requires = [ 18 install_requires = [
14 "nose>=0.10", 19 "nose>=0.10",
15 ], 20 ],
@@ -31,4 +36,3 @@ Changes output of the nose testing tool into format easily parsable by machine."
31 ], 36 ],
32 keywords='test unittest nose', 37 keywords='test unittest nose',
33 test_suite = 'nose.collector') 38 test_suite = 'nose.collector')
34