1 #-------------------------------------------------------------------------------
4 # Setup/installation script.
6 # Eli Bendersky (eliben@gmail.com)
7 # This code is in the public domain
8 #-------------------------------------------------------------------------------
10 from setuptools
import setup
14 with
open('README', 'rt') as readme
:
15 description
= '\n' + readme
.read()
17 # maybe running setup.py from some other dir
24 description
='Library for analyzing ELF files and DWARF debugging information',
25 long_description
=description
,
26 license
='Public domain',
28 author
='Eli Bendersky',
29 maintainer
='Eli Bendersky',
30 author_email
='eliben@gmail.com',
31 url
='https://github.com/eliben/pyelftools',
32 platforms
='Cross Platform',
34 'Programming Language :: Python :: 3',
37 # All packages and sub-packages must be listed here
44 'elftools.construct', 'elftools.construct.lib',
47 scripts
=['scripts/readelf.py']