From db744f5fa64d33a60dddd8239c261676a39f5b5c Mon Sep 17 00:00:00 2001 From: Marti Bolivar Date: Tue, 8 Jan 2019 10:51:05 -0700 Subject: [PATCH] Explicitly include bootstrap schema in west._bootstrap Otherwise we can't count on it being present in the package. Signed-off-by: Marti Bolivar --- MANIFEST.in | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..7091707 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include src/west/_bootstrap/west-schema.yml diff --git a/setup.py b/setup.py index b4844cc..adbbe26 100644 --- a/setup.py +++ b/setup.py @@ -22,6 +22,7 @@ setuptools.setup( url='https://github.com/zephyrproject-rtos/west', packages=('west._bootstrap',), package_dir={'': 'src'}, + include_package_data=True, classifiers=[ 'Programming Language :: Python :: 3', 'License :: OSI Approved :: Apache Software License',