Adds setup.py for setuptools.
This commit is contained in:
17
setup.py
Executable file
17
setup.py
Executable 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
|
||||
""")
|
||||
|
||||
Reference in New Issue
Block a user