summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorMaciek Starzyk <mstarzyk@gmail.com>2010-01-02 10:57:36 +0100
committerMaciek Starzyk <mstarzyk@gmail.com>2010-01-02 10:57:36 +0100
commit602fef26b5ff147ab9f4bdc83fb435445338613f (patch)
treed7e5aad115eca8ec95d57e7c2d7abaed893bb1b1 /setup.py
parentaeef20277fe09456b0ce689161aabbf27d79c514 (diff)
downloadnose-machineout-602fef26b5ff147ab9f4bdc83fb435445338613f.tar.bz2
nose-machineout-602fef26b5ff147ab9f4bdc83fb435445338613f.tar.xz
nose-machineout-602fef26b5ff147ab9f4bdc83fb435445338613f.zip
Updated entry point name to 0.10 API
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 679bf1e..e17384e 100644
--- a/setup.py
+++ b/setup.py
@@ -11,14 +11,14 @@ Changes output of the nose testing tool into format easily parsable by machine."
11 url="http://maxischenko.in.ua/blog/entries/109/nose-vim-integration", 11 url="http://maxischenko.in.ua/blog/entries/109/nose-vim-integration",
12 download_url="http://cheeseshop.python.org/pypi/nose_machineout/0.1", 12 download_url="http://cheeseshop.python.org/pypi/nose_machineout/0.1",
13 install_requires = [ 13 install_requires = [
14 "nose>=0.9", 14 "nose>=0.10",
15 ], 15 ],
16 scripts = [], 16 scripts = [],
17 license="BSD", 17 license="BSD",
18 zip_safe=False, 18 zip_safe=False,
19 py_modules=['machineout', 'test_machineout'], 19 py_modules=['machineout', 'test_machineout'],
20 entry_points = { 20 entry_points = {
21 'nose.plugins': ['machineout = machineout:NoseMachineReadableOutput'], 21 'nose.plugins.0.10': ['machineout = machineout:NoseMachineReadableOutput'],
22 }, 22 },
23 classifiers=[ 23 classifiers=[
24 'Development Status :: 4 - Beta', 24 'Development Status :: 4 - Beta',