diff --git a/setup.py b/setup.py
index 69061598087069e3cc3e5fc6a71b55c23de6543c..324283f42f5b16c7ecaca86753c3287b5f9e8810 100644
--- a/setup.py
+++ b/setup.py
@@ -36,4 +36,11 @@ setup(
                     ['buildout = %s.buildout:main' % name]}, 
 #    dependency_links = ['http://download.zope.org/distribution/'],
     zip_safe=False,
+    classifiers = [
+       'Development Status :: 4 - Beta',
+       'Intended Audience :: Developers',
+       'License :: OSI Approved :: Zope Public License',
+       'Topic :: Software Development :: Build Tools',
+       'Topic :: Software Development :: Libraries :: Python Modules',
+       ],
     )
diff --git a/zc.recipe.egg_/setup.py b/zc.recipe.egg_/setup.py
index d43d6ef69583dac68ea2e10fc6be283377d73aa3..ca626c493d847c8d320684b197be14de3d188ddf 100644
--- a/zc.recipe.egg_/setup.py
+++ b/zc.recipe.egg_/setup.py
@@ -24,4 +24,12 @@ setup(
                                     ]
                     },
     zip_safe=False,
+    classifiers = [
+       'Framework :: Buildout',
+       'Development Status :: 4 - Beta',
+       'Intended Audience :: Developers',
+       'License :: OSI Approved :: Zope Public License',
+       'Topic :: Software Development :: Build Tools',
+       'Topic :: Software Development :: Libraries :: Python Modules',
+       ],
     )
diff --git a/zc.recipe.testrunner/setup.py b/zc.recipe.testrunner/setup.py
index 931633dacf7ed40853515fa402fc30115ef7abf6..c24d269c5de90df6b1b85ceec60e5f8ea19247e5 100644
--- a/zc.recipe.testrunner/setup.py
+++ b/zc.recipe.testrunner/setup.py
@@ -21,4 +21,12 @@ setup(
                         ],
     test_suite = name+'.tests.test_suite',
     entry_points = {'zc.buildout': ['default = %s:TestRunner' % name]},
+    classifiers = [
+       'Framework :: Buildout',
+       'Development Status :: 4 - Beta',
+       'Intended Audience :: Developers',
+       'License :: OSI Approved :: Zope Public License',
+       'Topic :: Software Development :: Build Tools',
+       'Topic :: Software Development :: Libraries :: Python Modules',
+       ],
     )