Skip to content

Commit

Permalink
fix: updated manifest.in
Browse files Browse the repository at this point in the history
  • Loading branch information
gavindsouza committed May 1, 2020
1 parent f817aa4 commit 1ba8c46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -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 changes: 0 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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')
Expand All @@ -24,7 +22,6 @@
zip_safe=False,
include_package_data=True,
install_requires=install_requires,
package_data={ 'bench': playbooks_files },
entry_points='''
[console_scripts]
bench=bench.cli:cli
Expand Down

0 comments on commit 1ba8c46

Please sign in to comment.