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

25 lines
459 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',
2015-12-22 11:59:41 -08:00
description='Metadata driven, full-stack web framework',
author='Frappe Technologies',
2014-07-15 09:50:39 +05:30
author_email='info@frappe.io',
2015-12-22 11:59:41 -08:00
packages=find_packages(),
zip_safe=False,
include_package_data=True,
2014-07-15 09:45:59 +05:30
install_requires=[
'Click',
'jinja2',
2014-07-16 21:59:46 +05:30
'virtualenv',
2014-07-21 19:06:31 +05:30
'requests',
2014-09-05 15:59:06 +05:30
'honcho',
'semantic_version',
2014-09-06 20:53:12 +05:30
'GitPython==0.3.2.RC1'
2015-12-22 11:59:41 -08:00
],
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
''',
)