mirror of
https://github.com/frappe/bench.git
synced 2025-01-06 23:44:03 +00:00
fix: updated manifest.in
This commit is contained in:
parent
f817aa477f
commit
1ba8c463de
@ -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 *
|
||||
|
3
setup.py
3
setup.py
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user