2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-22 20:19:01 +00:00
bench/setup.py
2014-07-11 10:25:20 +05:30

17 lines
284 B
Python

from setuptools import setup, find_packages
setup(
name='bench',
version='0.1',
py_modules=find_packages()
include_package_data=True,
install_requires=[
'Click',
'jinja2',
],
entry_points='''
[console_scripts]
bench=bench.cli:bench
''',
)