forked from a0rtega/metame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·22 lines (20 loc) · 908 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup
setup(
name = 'metame',
packages = ['metame'],
version = '0.4',
description = 'metame is a metamorphic code engine for arbitrary executables',
author = 'Alberto Ortega',
author_email = 'aortega.lms+metame@gmail.com',
url = 'https://github.com/a0rtega/metame',
download_url = 'https://github.com/a0rtega/metame/archive/master.tar.gz',
scripts = ['scripts/metame'],
install_requires = ["keystone-engine", "r2pipe"],
keywords = ['metamorphic', 'code', 'engine'],
classifiers = [
'Topic :: Security',
'Environment :: Console',
'Operating System :: OS Independent',
'Intended Audience :: Developers'
],
)