summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2010-07-23 09:19:16 -0400
committerMike Crute <mcrute@gmail.com>2010-07-23 09:19:16 -0400
commitcd3308b13aaede995df6f6e18af1aae58d0249f3 (patch)
treedac88155124cb7a5e34ac0b747c9d98b4ee5b215
parent4d607be042691620012bcdfc145f65a281eb775d (diff)
downloadnose-machineout-cd3308b13aaede995df6f6e18af1aae58d0249f3.tar.bz2
nose-machineout-cd3308b13aaede995df6f6e18af1aae58d0249f3.tar.xz
nose-machineout-cd3308b13aaede995df6f6e18af1aae58d0249f3.zip
Updating setup.py file for upload to chishop.
-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