Browse Source

setup.py: Added setup_requires: nose, nose-cover3, unittest2>=0.4.0, simplejson

Ask Solem 15 years ago
parent
commit
a46567321c
1 changed files with 1 additions and 0 deletions
  1. 1 0
      setup.py

+ 1 - 0
setup.py

@@ -71,6 +71,7 @@ setup(
     packages=find_packages(exclude=['ez_setup', 'tests', 'tests.*']),
     scripts=["bin/celeryd", "bin/celerybeat", "bin/camqadm"],
     zip_safe=False,
+    setup_requires=["nose", "nose-cover3", "unittest2>=0.4.0", "simplejson"],
     install_requires=install_requires,
     cmdclass = {"test": RunTests, "quicktest": QuickRunTests},
     test_suite="nose.collector",