summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..679bf1e
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,34 @@
1#from distutils import setup
2from setuptools import setup
3
4setup(
5 name="nose_machineout",
6 version="0.2",
7 description="""\
8Changes output of the nose testing tool into format easily parsable by machine.""",
9 author="Max Ischenko",
10 author_email="ischenko@gmail.com",
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 = [
14 "nose>=0.9",
15 ],
16 scripts = [],
17 license="BSD",
18 zip_safe=False,
19 py_modules=['machineout', 'test_machineout'],
20 entry_points = {
21 'nose.plugins': ['machineout = machineout:NoseMachineReadableOutput'],
22 },
23 classifiers=[
24 'Development Status :: 4 - Beta',
25 'Environment :: Console',
26 'Intended Audience :: Developers',
27 'License :: OSI Approved :: Python Software Foundation License',
28 'Operating System :: POSIX',
29 'Programming Language :: Python',
30 'Topic :: Software Development',
31 ],
32 keywords='test unittest nose',
33 test_suite = 'nose.collector')
34