forked from Sentinel-One/CobaltStrikeParser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 631 Bytes
/
Copy pathsetup.py
File metadata and controls
19 lines (17 loc) · 631 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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"]
)