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

22 lines
508 B
Python
Raw Normal View History

from setuptools import find_packages, setup
from bench import PROJECT_NAME, VERSION
2018-04-17 10:43:17 +00:00
with open('requirements.txt') as f:
install_requires = f.read().strip().split('\n')
2014-07-10 17:21:34 +00:00
setup(
name=PROJECT_NAME,
2015-12-22 19:59:41 +00:00
description='Metadata driven, full-stack web framework',
author='Frappe Technologies',
2014-07-15 04:20:39 +00:00
author_email='info@frappe.io',
version=VERSION,
2015-12-22 19:59:41 +00:00
packages=find_packages(),
zip_safe=False,
include_package_data=True,
2018-04-17 10:43:17 +00:00
install_requires=install_requires,
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
''',
)