From 1ba8c463ded0b3d95e7a3b87e9df1cbeb826ddbc Mon Sep 17 00:00:00 2001 From: Gavin D'souza Date: Fri, 1 May 2020 19:12:36 +0530 Subject: [PATCH] fix: updated manifest.in --- MANIFEST.in | 2 ++ setup.py | 3 --- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index e84c5e61..f9ed1524 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -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 * diff --git a/setup.py b/setup.py index 5f23a676..7f056363 100644 --- a/setup.py +++ b/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