diff --git a/blazer/__version__.py b/blazer/__version__.py index 17e0d7b..faa54fd 100644 --- a/blazer/__version__.py +++ b/blazer/__version__.py @@ -7,7 +7,7 @@ __title__ = 'blazer' __description__ = 'An HPC abstraction over MPI that uses pipes and pydash primitives for composable super-computing.' -__version__ = '0.1.21' +__version__ = '0.1.22' __author__ = 'Darren Govoni' __author_email__ = 'darren@ontrenet.com' __license__ = 'CC0-1.0 License' diff --git a/setup.py b/setup.py index 195d5b5..de91030 100644 --- a/setup.py +++ b/setup.py @@ -79,7 +79,7 @@ def run(self): class CleanCommand(Command): """Custom clean command to tidy up the project root.""" - CLEAN_FILES = './docs/_build ./*.out ./*.log ./work/* ./build ./dist ./__pycache__ ./*/__pycache__ ./*.pyc ./ssh*py ./*.tgz ./.pytest_cache ./*.egg-info'.split( + CLEAN_FILES = './docs/_build ./*.out ./*.log ./work/* ./build ./dist ./__pycache__ ./blazer/cli/__pycache__ ./*/__pycache__ ./*.pyc ./ssh*py ./*.tgz ./.pytest_cache ./*.egg-info'.split( ' ') user_options = []