Skip to content

Commit

Permalink
Adding zip_safe flag to prevent warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
phutelmyer committed Dec 30, 2022
1 parent fbeeb66 commit 4de8987
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion build/python/backend/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
description='strelka: container-based file analysis at scale',
license='Apache 2.0',
packages=setuptools.find_packages(),
scripts=['bin/strelka-backend']
scripts=['bin/strelka-backend'],
zip_safe=True
)
3 changes: 2 additions & 1 deletion build/python/mmrpc/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
description='strelka: container-based file analysis at scale',
license='Apache 2.0',
packages=setuptools.find_packages(),
scripts=['bin/strelka-mmrpc']
scripts=['bin/strelka-mmrpc'],
zip_safe=True
)
3 changes: 2 additions & 1 deletion src/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
description='strelka: container-based file analysis at scale',
license='Apache 2.0',
packages=setuptools.find_packages(),
scripts=['bin/strelka-backend', 'bin/strelka-mmrpc']
scripts=['bin/strelka-backend', 'bin/strelka-mmrpc'],
zip_safe=True
)

0 comments on commit 4de8987

Please sign in to comment.