From df68d9aea68184aa719771712922f9ded876ffb7 Mon Sep 17 00:00:00 2001 From: "Edward Z. Yang" Date: Sun, 6 Jun 2010 21:00:21 -0700 Subject: [PATCH] Add setuptools setup.py file to project. Signed-off-by: Edward Z. Yang --- .gitignore | 1 + pull.sh | 1 + setup.py | 14 ++++++++++++++ 3 files changed, 16 insertions(+) create mode 100644 setup.py diff --git a/.gitignore b/.gitignore index 50d7a76..0f8873e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ *.pyc *.swp *~ +wizard.egg-info diff --git a/pull.sh b/pull.sh index 8ab68bb..53a85b7 100755 --- 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 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", +) -- 2.45.2