]> scripts.mit.edu Git - wizard.git/blob - setup.py
Add setuptools setup.py file to project.
[wizard.git] / setup.py
1 import setuptools
2
3 setuptools.setup(
4     name = 'wizard',
5     version = '0.1.dev',
6     author = 'The Wizard Team',
7     author_email = 'scripts-team@mit.edu',
8     description = ('A next-generation autoinstall management system'),
9     license = 'MIT',
10     url = 'http://scripts.mit.edu/wizard',
11     packages = setuptools.find_packages(exclude=["tests", "plugins"]),
12     install_requires = ['decorator'], # versions?
13     keywords = "autoinstall webapp deploy",
14 )