2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-23 15:08:24 +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 16:13:17 +05:30
with open('requirements.txt') as f:
install_requires = f.read().strip().split('\n')
2014-07-10 22:51:34 +05:30
setup(
name=PROJECT_NAME,
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',
version=VERSION,
2015-12-22 11:59:41 -08:00
packages=find_packages(),
zip_safe=False,
include_package_data=True,
2018-04-17 16:13:17 +05:30
install_requires=install_requires,
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
''',
)