2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-27 22:39:03 +00:00

fix tabs and spaces in setup.py

This commit is contained in:
Pratik Vyas 2014-07-15 09:45:59 +05:30
parent 603e7d61b5
commit c2ba948e32

View File

@ -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
''',