From d5d571d9868c56b38d1c52c114a6cecdeb499888 Mon Sep 17 00:00:00 2001 From: Ryan Pessa Date: Wed, 13 Jan 2016 10:40:48 -0600 Subject: [PATCH] add missing files to setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index e9d969ad85..59af46338c 100644 --- a/setup.py +++ b/setup.py @@ -30,14 +30,14 @@ def recursively_include(results, directory, patterns): results[directory].append(join(*filename.split(sep)[1:])) recursively_include(package_data, 'pythonforandroid/recipes', - ['*.patch', 'Setup', '*.pyx', '*.py', '*.c', '*.h', ]) + ['*.patch', 'Setup*', '*.pyx', '*.py', '*.c', '*.h', ]) recursively_include(package_data, 'pythonforandroid/bootstraps', ['*.properties', '*.xml', '*.java', '*.tmpl', '*.txt', '*.png', '*.mk', '*.c', '*.h', '*.py', '*.sh', '*.jpg', '*.aidl', ]) recursively_include(package_data, 'pythonforandroid/bootstraps', ['sdl-config', ]) recursively_include(package_data, 'pythonforandroid', - ['liblink', 'biglink']) + ['liblink', 'biglink', 'liblink.sh']) setup(name='python-for-android', version='0.3',