Adds setup.py for setuptools.

This commit is contained in:
alshain
2011-02-07 23:03:12 +01:00
parent c69bcba7df
commit 782e457f02

17
setup.py Executable file
View File

@@ -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
""")