2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-24 07:28:25 +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-07-31 08:21:57 +00:00
version='0.92',
2014-07-15 09:45:59 +05:30
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',
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'
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
''',
)