mirror of
https://github.com/frappe/bench.git
synced 2024-11-11 15:51:03 +00:00
23 lines
410 B
Python
23 lines
410 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='bench',
|
|
version='0.1',
|
|
py_modules=find_packages(),
|
|
include_package_data=True,
|
|
url='https://github.com/frappe/bench',
|
|
author='Web Notes Technologies Pvt. Ltd.',
|
|
author_email='info@frappe.io',
|
|
install_requires=[
|
|
'Click',
|
|
'jinja2',
|
|
'virtualenv',
|
|
'requests',
|
|
'honcho'
|
|
],
|
|
entry_points='''
|
|
[console_scripts]
|
|
bench=bench.cli:cli
|
|
''',
|
|
)
|