2
0
mirror of https://github.com/frappe/bench.git synced 2024-11-11 15:51:03 +00:00
bench/setup.py

17 lines
284 B
Python
Raw Normal View History

2014-07-11 04:55:20 +00:00
from setuptools import setup, find_packages
2014-07-10 17:21:34 +00:00
setup(
name='bench',
version='0.1',
2014-07-11 04:55:20 +00:00
py_modules=find_packages()
2014-07-10 17:21:34 +00:00
include_package_data=True,
install_requires=[
'Click',
2014-07-11 04:55:20 +00:00
'jinja2',
2014-07-10 17:21:34 +00:00
],
entry_points='''
[console_scripts]
bench=bench.cli:bench
''',
)