You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by pq...@apache.org on 2009/12/10 06:53:40 UTC

svn commit: r889099 - /incubator/libcloud/trunk/setup.py

Author: pquerna
Date: Thu Dec 10 05:53:40 2009
New Revision: 889099

URL: http://svn.apache.org/viewvc?rev=889099&view=rev
Log:
add classifiers to setup.py

Modified:
    incubator/libcloud/trunk/setup.py

Modified: incubator/libcloud/trunk/setup.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/setup.py?rev=889099&r1=889098&r2=889099&view=diff
==============================================================================
--- incubator/libcloud/trunk/setup.py (original)
+++ incubator/libcloud/trunk/setup.py Thu Dec 10 05:53:40 2009
@@ -53,6 +53,15 @@
       package_dir = {'libcloud' : 'libcloud', 'libcloud.drivers': 'libcloud/drivers' },
       license = 'Apache License (2.0)',
       url = 'http://incubator.apache.org/libcloud/',
-      cmdclass = { 'test': TestCommand }
+      cmdclass = { 'test': TestCommand },
+      classifiers = [
+	        'Development Status :: 4 - Beta',
+	        'Environment :: Console',
+	        'Intended Audience :: System Administrators',
+	        'License :: OSI Approved :: Apache Software License',
+	        'Operating System :: OS Independent',
+	        'Programming Language :: Python',
+	        'Topic :: Software Development :: Libraries :: Python Modules'
+	    ],       
 )