]> scripts.mit.edu Git - wizard.git/commitdiff
Add setuptools setup.py file to project.
authorEdward Z. Yang <ezyang@mit.edu>
Mon, 7 Jun 2010 04:00:21 +0000 (21:00 -0700)
committerEdward Z. Yang <ezyang@mit.edu>
Mon, 7 Jun 2010 04:15:18 +0000 (21:15 -0700)
Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
.gitignore
pull.sh
setup.py [new file with mode: 0644]

index 50d7a764ae947e8cb60566381797b0da29609aab..0f8873e9dfdf1680c293e244219e86648e831361 100644 (file)
@@ -1,3 +1,4 @@
 *.pyc
 *.swp
 *~
+wizard.egg-info
diff --git a/pull.sh b/pull.sh
index 8ab68bb619cbbb94e7ec9c9368ca9b710885ed5c..53a85b7d81486dc67ec7c26a5fac176eabd7e224 100755 (executable)
--- a/pull.sh
+++ b/pull.sh
@@ -2,3 +2,4 @@
 aklog
 cd /mit/scripts/wizard
 git pull
+python setup.py egg_info
diff --git a/setup.py b/setup.py
new file mode 100644 (file)
index 0000000..072c9b3
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,14 @@
+import setuptools
+
+setuptools.setup(
+    name = 'wizard',
+    version = '0.1.dev',
+    author = 'The Wizard Team',
+    author_email = 'scripts-team@mit.edu',
+    description = ('A next-generation autoinstall management system'),
+    license = 'MIT',
+    url = 'http://scripts.mit.edu/wizard',
+    packages = setuptools.find_packages(exclude=["tests", "plugins"]),
+    install_requires = ['decorator'], # versions?
+    keywords = "autoinstall webapp deploy",
+)