Added PyPI package support.

This commit is contained in:
Joe Testa
2019-09-04 15:05:07 -04:00
parent bce9e2b152
commit eac81455a9
6 changed files with 62 additions and 1 deletions

View File

@ -3012,6 +3012,10 @@ def audit(aconf, sshv=None):
utils = Utils()
out = Output()
if __name__ == '__main__': # pragma: nocover
def main():
conf = AuditConf.from_cmdline(sys.argv[1:], usage)
audit(conf)
if __name__ == '__main__': # pragma: nocover
main()