summaryrefslogtreecommitdiff
path: root/setup.py
blob: e17384eb11d605466af703924b657559bfeb7ff4 (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
#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.10",
    ],
    scripts = [],
    license="BSD",
    zip_safe=False,
    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')