-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
executable file
·51 lines (49 loc) · 1.48 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Copyright (C) 2017-2018 Cuckoo Foundation.
# This file is part of Cuckoo Sandbox - https://cuckoosandbox.org/.
# See the file 'docs/LICENSE' for copying permission.
import setuptools
setuptools.setup(
name="egghatch",
version="0.2.3",
author="Jurriaan Bremer",
author_email="[email protected]",
packages=[
"egghatch",
],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Framework :: Pytest",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2.7",
"Topic :: Security",
],
url="https://cuckoosandbox.org/",
license="GPLv3",
description="Cuckoo Sandbox Shellcode Identification & Formatting",
long_description=open("README.rst", "rb").read(),
include_package_data=True,
entry_points={
"console_scripts": [
"egghatch = egghatch.main:main",
],
},
install_requires=[
],
extras_require={
":sys_platform == 'win32'": [
"capstone-windows==3.0.4",
],
":sys_platform == 'darwin'": [
"capstone==3.0.5rc2",
],
":sys_platform == 'linux2'": [
"capstone==3.0.5rc2",
],
},
)