diff --git a/setup.py b/setup.py index 84e2f872..b0a1f65d 100644 --- a/setup.py +++ b/setup.py @@ -1,15 +1,16 @@ from setuptools import setup, find_packages setup( - name='bench', - version='0.1', - py_modules=find_packages(), - include_package_data=True, - install_requires=[ - 'Click', - 'jinja2', + name='bench', + version='0.1', + py_modules=find_packages(), + include_package_data=True, + install_requires=[ + 'Click', + 'jinja2', + 'virtualenv' ], - entry_points=''' + entry_points=''' [console_scripts] bench=bench.cli:cli ''',