-
Notifications
You must be signed in to change notification settings - Fork 97
/
setup.py
52 lines (46 loc) · 1.78 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
52
from os import path
from setuptools import setup, find_packages, Extension
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
shellen_module = Extension(
'shellen_native',
sources=['./ext/shellen.c']
)
setup(
name='shellen',
version='0.3.0',
description='Interactive environment for crafting shellcodes. Also, it just can be used as a simple assembler/disassembler',
long_description=long_description,
url='https://github.com/merrychap/shellen',
author='Mike Evdokimov',
author_email='[email protected]',
license='MIT',
classifiers = [
'Environment :: Console',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Security',
'Topic :: Software Development :: Disassemblers',
'Topic :: Software Development :: Assemblers',
'Topic :: System :: Shells',
'Topic :: Utilities',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Information Technology'
],
keywords=['shellcode', 'pwn', 'assembler', 'disassembler', 'syscalls'],
packages=['shellen', 'shellen/opt', 'shellen/asms', 'shellen/syscalls'],
include_package_data=True,
package_data={'shellen/syscalls':['linux_tables/*.json']},
install_requires=['keystone-engine', 'capstone', 'colorama', 'termcolor', 'terminaltables', 'prompt_toolkit', 'requests', 'pygments'],
python_requires='>=3',
entry_points={
'console_scripts': [
'shellen = shellen.main:main',
]
},
ext_modules=[shellen_module]
)