-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
executable file
·33 lines (31 loc) · 1.22 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import setuptools
description_short = "Project for identifying executables that have command-line options that can be obfuscated, possibly bypassing detection rules."
with open("README.md", "r", encoding="utf-8") as fh:
description_long = fh.read()
setuptools.setup(
name="analyse_obfuscation",
version="1.1.0",
author="@Wietze",
description=description_short,
long_description=description_long,
long_description_content_type="text/markdown",
url="/~https://github.com/wietze/windows-command-line-obfuscation",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: Microsoft :: Windows",
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Topic :: Security',
'Topic :: Internet :: Log Analysis',
'Environment :: Console',
],
entry_points={
'console_scripts': [
'analyse_obfuscation = analyse_obfuscation.run:parse_arguments'
],
},
install_requires=['tqdm', 'colorama', 'terminaltables']
)