summaryrefslogtreecommitdiff
path: root/setup.py
blob: 0e0538348dddf00abc3b771623a95d5be9aaf1b8 (plain)
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='linkermapviz',
    version='0.1.0',
    author='Lars-Dominik Braun',
    author_email='lars+linkermapviz@6xq.net',
    packages=['linkermapviz'],
    license='LICENSE.txt',
    description='Visualize GNU ld’s linker map with a tree map.',
    install_requires=[
        'bokeh',
        'squarify',
    ],
    entry_points={
    'console_scripts': [
            'linkermapviz = linkermapviz:main',
            ],
    },
)