2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-06 23:44:03 +00:00

Fix setup.py

This commit is contained in:
Pratik Vyas 2015-12-22 11:59:41 -08:00
parent 0fe96e7e07
commit 6ac1c0db41
2 changed files with 8 additions and 6 deletions

View File

@ -1,3 +1,5 @@
include *.md
include *.py
recursive-include bench *.conf
recursive-include bench *.py
recursive-include bench *.txt

View File

@ -2,12 +2,12 @@ from setuptools import setup, find_packages
setup(
name='bench',
version='0.92',
py_modules=find_packages(),
include_package_data=True,
url='https://github.com/frappe/bench',
author='Web Notes Technologies Pvt. Ltd.',
description='Metadata driven, full-stack web framework',
author='Frappe Technologies',
author_email='info@frappe.io',
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=[
'Click',
'jinja2',
@ -16,7 +16,7 @@ setup(
'honcho',
'semantic_version',
'GitPython==0.3.2.RC1'
],
],
entry_points='''
[console_scripts]
bench=bench.cli:cli