2
0
mirror of https://github.com/frappe/bench.git synced 2024-11-13 16:56:33 +00:00
bench/setup.py

17 lines
283 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 06:18:36 +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]
2014-07-11 07:40:33 +00:00
bench=bench.cli:cli
2014-07-10 17:21:34 +00:00
''',
)