]> scripts.mit.edu Git - wizard.git/blob - plugins/scripts/setup.py
Add wizard.sql.auth function and plugin, refresh docs.
[wizard.git] / plugins / scripts / setup.py
1 import setuptools
2
3 setuptools.setup(
4     name = 'wizard-scripts',
5     version = '0.1.dev',
6     author = 'The Scripts Team',
7     author_email = 'scripts-team@mit.edu',
8     description = ('Customizations to Wizard for scripts.mit.edu'),
9     license = 'MIT',
10     url = 'http://scripts.mit.edu/',
11     packages = setuptools.find_packages(),
12     entry_points = {
13         'wizard.user.quota': 'scripts = wizard_scripts:user_quota',
14         'wizard.deploy.web': 'scripts = wizard_scripts:deploy_web',
15         'wizard.sql.auth': 'scripts = wizard_scripts:sql_auth',
16     }
17 )