From 782e457f027c8cbfbed855ae374a14534be8b7e5 Mon Sep 17 00:00:00 2001 From: alshain Date: Mon, 7 Feb 2011 23:03:12 +0100 Subject: [PATCH] Adds setup.py for setuptools. --- setup.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 setup.py diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..7b6841b --- /dev/null +++ b/setup.py @@ -0,0 +1,17 @@ +#!/usr/bin/env python + +from setuptools import setup + +setup(name="couchpotato", + packages=['couchpotato'], + package_dir={'': 'src'}, + install_requires=[ + 'argparse', + 'sqlalchemy', + 'elixir', + 'nose'], + entry_points=""" + [console_scripts] + couchpotato = couchpotato.cli:cmd_couchpotato + """) +