2014-07-11 04:55:20 +00:00
|
|
|
from setuptools import setup, find_packages
|
2014-07-10 17:21:34 +00:00
|
|
|
|
|
|
|
setup(
|
2014-07-15 04:15:59 +00:00
|
|
|
name='bench',
|
|
|
|
version='0.1',
|
|
|
|
py_modules=find_packages(),
|
|
|
|
include_package_data=True,
|
2014-07-15 04:20:39 +00:00
|
|
|
url='https://github.com/frappe/bench',
|
|
|
|
author='Web Notes Technologies Pvt. Ltd.',
|
|
|
|
author_email='info@frappe.io',
|
2014-07-15 04:15:59 +00:00
|
|
|
install_requires=[
|
|
|
|
'Click',
|
|
|
|
'jinja2',
|
2014-07-16 16:29:46 +00:00
|
|
|
'virtualenv',
|
|
|
|
'honcho'
|
2014-07-10 17:21:34 +00:00
|
|
|
],
|
2014-07-15 04:15:59 +00:00
|
|
|
entry_points='''
|
2014-07-10 17:21:34 +00:00
|
|
|
[console_scripts]
|
2014-07-11 07:40:33 +00:00
|
|
|
bench=bench.cli:cli
|
2014-07-10 17:21:34 +00:00
|
|
|
''',
|
|
|
|
)
|