From 653433f380ba635585a069cac6e476950f1c8e2a Mon Sep 17 00:00:00 2001 From: Ray Barrett Date: Wed, 29 May 2019 16:37:51 +0100 Subject: [PATCH] Update setup.py (#1) * Update setup.py Setup.py to correctly identify the required packages. * Create MANIFEST.in Add images required for the widgets to display correctly. --- MANIFEST.in | 2 ++ setup.py | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..891b1e73 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include NodeGraphQt/widgets/icons/down_arrow.png +include NodeGraphQt/widgets/icons/node_base.png diff --git a/setup.py b/setup.py index 39d6116b..8f7411e9 100644 --- a/setup.py +++ b/setup.py @@ -26,8 +26,9 @@ long_description=long_description, long_description_content_type='text/markdown', url='https://github.com/jchanvfx/NodeGraphQt', - packages=['NodeGraphQt'], + packages=setuptools.find_packages(exclude=["example_nodes"]), classifiers=classifiers, + include_package_data=True, )