From a43be0b7948d2596edcd9fe7258e81d6e31a70c8 Mon Sep 17 00:00:00 2001 From: Mike Crute Date: Tue, 3 Nov 2009 14:56:00 -0500 Subject: Initial import --- setup.py | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..679bf1e --- /dev/null +++ b/setup.py @@ -0,0 +1,34 @@ +#from distutils import setup +from setuptools import setup + +setup( + name="nose_machineout", + version="0.2", + description="""\ +Changes output of the nose testing tool into format easily parsable by machine.""", + author="Max Ischenko", + author_email="ischenko@gmail.com", + url="http://maxischenko.in.ua/blog/entries/109/nose-vim-integration", + download_url="http://cheeseshop.python.org/pypi/nose_machineout/0.1", + install_requires = [ + "nose>=0.9", + ], + scripts = [], + license="BSD", + zip_safe=False, + py_modules=['machineout', 'test_machineout'], + entry_points = { + 'nose.plugins': ['machineout = machineout:NoseMachineReadableOutput'], + }, + classifiers=[ + 'Development Status :: 4 - Beta', + 'Environment :: Console', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: Python Software Foundation License', + 'Operating System :: POSIX', + 'Programming Language :: Python', + 'Topic :: Software Development', + ], + keywords='test unittest nose', + test_suite = 'nose.collector') + -- cgit v1.2.3