Files
CouchPotatoServer/setup.py
T
2011-02-07 23:03:12 +01:00

18 lines
363 B
Python
Executable File

#!/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
""")