]> scripts.mit.edu Git - wizard.git/blobdiff - plugins/scripts/setup.py
No AFS means OSError, not CallError.
[wizard.git] / plugins / scripts / setup.py
index 057503287975515495170e50a7dc03f2d2c2c2bd..51f2fb6b62159df9f8b7e03869f43e937c9b6e2d 100644 (file)
@@ -11,6 +11,19 @@ setuptools.setup(
     packages = setuptools.find_packages(),
     entry_points = {
         'wizard.user.quota': 'scripts = wizard_scripts:user_quota',
+        'wizard.user.email': 'scripts = wizard_scripts:user_email',
+        'wizard.user.operator': 'scripts = wizard_scripts:user_operator',
+        'wizard.user.passwd': 'scripts = wizard_scripts:user_passwd',
         'wizard.deploy.web': 'scripts = wizard_scripts:deploy_web',
+        'wizard.sql.auth': 'scripts = wizard_scripts:sql_auth',
+        'wizard.sql.drop': 'scripts = wizard_scripts:sql_drop',
+        'wizard.install.strategy': ['email = wizard_scripts:EmailStrategy',
+                                    'mysql = wizard_scripts:MysqlStrategy',
+                                   ],
+        'wizard.app': ['wordpress = wizard.app.wordpress:Application',
+                       'mediawiki = wizard.app.mediawiki:Application',
+                       'phpBB = wizard.app.phpBB:Application',
+                      ],
+        'wizard.dummy_apps': 'scripts = wizard_scripts:dummy_apps',
     }
 )