summaryrefslogtreecommitdiff
path: root/setup.py
blob: 959c47e77398b4a8e51b8a94039f3a4916318a9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python
"""
Changes output of the nose testing tool into format easily parsable
by a machine.

Originally written by Max Ischenko.
"""

from setuptools import setup

setup(
    name="nose_machineout",
    version="0.2",
    description=__doc__.replace('\n', ' ').strip(),
    author="Mike Crute",
    author_email="mcrute@gmail.com",
    url="http://nose-machineout.googlecode.com",
    install_requires = [
        "nose>=0.10",
    ],
    license="BSD",
    py_modules=['machineout', 'test_machineout'],
    entry_points = {
        'nose.plugins.0.10': [
            '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')