From 183035aff22d13f21bc21dd496aa6e14a5dfa1b7 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Thu, 12 Oct 2017 13:22:01 +0200 Subject: Initial import --- setup.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..0e05383 --- /dev/null +++ b/setup.py @@ -0,0 +1,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', + ], + }, +) + -- cgit v1.2.3