Skip to content

Commit

Permalink
Add requirements (#99)
Browse files Browse the repository at this point in the history
* add requirements

* version bump
  • Loading branch information
nhakmiller authored May 3, 2021
1 parent ef121ab commit 47a582c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include requirements.txt
2 changes: 1 addition & 1 deletion panther_analysis_tool/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1177,7 +1177,7 @@ def setup_parser() -> argparse.ArgumentParser:
+ "managing Panther policies and rules.",
prog="panther_analysis_tool",
)
parser.add_argument("--version", action="version", version="panther_analysis_tool 0.6.0")
parser.add_argument("--version", action="version", version="panther_analysis_tool 0.6.1")
parser.add_argument("--debug", action="store_true", dest="debug")
subparsers = parser.add_subparsers()

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
setup(
name='panther_analysis_tool',
packages=['panther_analysis_tool'],
version='0.6.0',
version='0.6.1',
license='AGPL-3.0',
description=
'Panther command line interface for writing, testing, and packaging policies/rules.',
author='Panther Labs Inc',
author_email='pypi@runpanther.io',
url='https://github.com/panther-labs/panther_analysis_tool',
download_url = 'https://github.com/panther-labs/panther_analysis_tool/archive/v0.6.0.tar.gz',
download_url = 'https://github.com/panther-labs/panther_analysis_tool/archive/v0.6.1.tar.gz',
keywords=['Security', 'CLI'],
scripts=['bin/panther_analysis_tool'],
install_requires=install_requires,
Expand Down

0 comments on commit 47a582c

Please sign in to comment.