From 8bf0920e668c26e9a1cf3739ec72d670a5050d1b Mon Sep 17 00:00:00 2001 From: Haitham Khedr Date: Thu, 3 Oct 2024 19:40:13 +0200 Subject: [PATCH] Add MANIFEST.in (#353) --- MANIFEST.in | 7 +++++++ setup.py | 1 - 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..794311f --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,7 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. + +# This source code is licensed under the license found in the +# LICENSE file in the root directory of this source tree. + +recursive-include sam2 *.yaml #include all config files diff --git a/setup.py b/setup.py index cb68989..54ec575 100644 --- a/setup.py +++ b/setup.py @@ -165,7 +165,6 @@ setup( author_email=AUTHOR_EMAIL, license=LICENSE, packages=find_packages(exclude="notebooks"), - package_data={"": ["*.yaml"]}, # SAM 2 configuration files include_package_data=True, install_requires=REQUIRED_PACKAGES, extras_require=EXTRA_PACKAGES,