Skip to content

Commit

Permalink
Add DedupPeriodMinutes as a supported field (#9)
Browse files Browse the repository at this point in the history
* add support for dedup period

* fixed named

* pypi updates
  • Loading branch information
nhakmiller authored Mar 24, 2020
1 parent 02f611d commit f2c6361
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion panther_analysis_tool/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ def get(self, arg: str, default: Any = None) -> Any:
object,
Optional('Description'):
str,
Optional('DedupPeriodMinutes'):
int,
Optional('DisplayName'):
str,
Optional('Reference'):
Expand Down Expand Up @@ -330,7 +332,7 @@ def setup_parser() -> argparse.ArgumentParser:
prog='panther_analysis_tool')
parser.add_argument('--version',
action='version',
version='panther_analysis_tool 0.1.7')
version='panther_analysis_tool 0.1.8')
subparsers = parser.add_subparsers()

test_parser = subparsers.add_parser(
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
setup(
name='panther_analysis_tool',
packages=['panther_analysis_tool'],
version='0.1.7',
version='0.1.8',
license='apache-2.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.1.7.tar.gz',
download_url = 'https://github.com/panther-labs/panther_analysis_tool/archive/v0.1.8.tar.gz',
keywords=['Security', 'CLI'],
scripts=['bin/panther_analysis_tool'],
install_requires=[
Expand Down

0 comments on commit f2c6361

Please sign in to comment.