mirror of
https://github.com/Sentinel-One/CobaltStrikeParser
synced 2026-06-21 13:45:50 +00:00
Create setup.py to enable module installation via pip.
This commit is contained in:
@@ -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"]
|
||||
)
|
||||
Reference in New Issue
Block a user