-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsetup.py
29 lines (27 loc) · 1.2 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
#!/usr/bin/env python3
from distutils.core import setup
setup(
name = 'makeelf',
packages = ['makeelf', 'makeelf.type'],
version = '0.3.5',
description = 'ELF reader-writer library',
url = 'https://github.com/v3l0c1r4pt0r/makeelf',
author = 'v3l0c1r4pt0r',
author_email = '[email protected]',
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
],
long_description = '''MakeELF is a Python library to parse, modify and create ELF binaries. It provides following features:
- easy to use, standard Python interface
- reading existing ELF files to Python representation
- modification of every aspect of ELF format structures
- ability to skip any validation to test other parsers for potential errors
- creating new valid ELF files with just one step
- easy serialization of every structure present in ELF file
''',
)