From c6089adb2543c8b83c8551321ce386f34d9e9ca9 Mon Sep 17 00:00:00 2001 From: drakearonhalt Date: Thu, 2 Dec 2021 21:06:02 -0500 Subject: [PATCH] Create setup.py to enable module installation via pip. --- setup.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8a8dc84 --- /dev/null +++ b/setup.py @@ -0,0 +1,19 @@ +import setuptools +import sys + +with open('README.md') as fh: + long_description = fh.read() + +setuptools.setup( + name="CobaltStrikeParser", + version="11721a49", + description="Python parser for CobaltStrike Beacon's configuration", + license="Attribution-NonCommercial-ShareAlike 4.0 International", + long_description=long_description, + url="https://github.com/Sentinel-One/CobaltStrikeParser", + py_modules=["parse_beacon_config", "beacon_utils"], + install_requires=["urllib3", + "requests", + "netstruct==1.1.2", + "pefile==2019.4.18"] + )