2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-28 23:09:03 +00:00

fix: updated manifest.in

This commit is contained in:
Gavin D'souza 2020-05-01 19:12:36 +05:30
parent f817aa477f
commit 1ba8c463de
2 changed files with 2 additions and 3 deletions

View File

@ -1,7 +1,9 @@
include *.md
include *.py
recursive-include bench *.conf
recursive-include bench *.sh
recursive-include bench *.py
recursive-include bench *.txt
recursive-include bench *.json
recursive-include bench/config/templates *
recursive-include bench/playbooks *

View File

@ -1,10 +1,8 @@
import ast
import os
import re
from setuptools import find_packages, setup
playbooks_files = [os.path.join(dp, f) for dp, dn, filenames in os.walk("playbooks") for f in filenames]
with open('requirements.txt') as f:
install_requires = f.read().strip().split('\n')
@ -24,7 +22,6 @@ setup(
zip_safe=False,
include_package_data=True,
install_requires=install_requires,
package_data={ 'bench': playbooks_files },
entry_points='''
[console_scripts]
bench=bench.cli:cli