diff --git a/MANIFEST.in b/MANIFEST.in index cf4e3f4..ed614ea 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -13,6 +13,8 @@ prune IPython/frontend/html/notebook/static/mathjax include IPython/.git_commit_info.ini +include IPython/frontend/qt/console/resources/icon/IPythonConsole.svg + graft docs exclude docs/\#* exclude docs/man/*.1 diff --git a/setupbase.py b/setupbase.py index 1a030ef..ffa26f7 100644 --- a/setupbase.py +++ b/setupbase.py @@ -134,7 +134,8 @@ def find_package_data(): package_data = { 'IPython.config.profile' : ['README', '*/*.py'], 'IPython.testing' : ['*.txt'], - 'IPython.frontend.html.notebook' : ['templates/*']+static_data + 'IPython.frontend.html.notebook' : ['templates/*'] + static_data, + 'IPython.frontend.qt.console' : ['resources/icon/*.svg'], } return package_data