2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-23 23:18:24 +00:00
bench/setup.py

21 lines
384 B
Python
Raw Normal View History

2014-07-11 10:25:20 +05:30
from setuptools import setup, find_packages
2014-07-10 22:51:34 +05:30
setup(
2014-07-15 09:45:59 +05:30
name='bench',
version='0.1',
py_modules=find_packages(),
include_package_data=True,
2014-07-15 09:50:39 +05:30
url='https://github.com/frappe/bench',
author='Web Notes Technologies Pvt. Ltd.',
author_email='info@frappe.io',
2014-07-15 09:45:59 +05:30
install_requires=[
'Click',
'jinja2',
'virtualenv'
2014-07-10 22:51:34 +05:30
],
2014-07-15 09:45:59 +05:30
entry_points='''
2014-07-10 22:51:34 +05:30
[console_scripts]
2014-07-11 13:10:33 +05:30
bench=bench.cli:cli
2014-07-10 22:51:34 +05:30
''',
)