2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-23 12:39:01 +00:00
bench/setup.py

25 lines
458 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(
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',
2014-07-21 13:36:31 +00:00
'requests',
2014-09-05 10:29:06 +00:00
'honcho',
'semantic_version',
2014-09-06 15:23:12 +00:00
'GitPython==0.3.2.RC1'
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
''',
)