From 76cb0d98af16a0c9744b24110687935313246747 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Moreno?= <52785490+amorenoz@users.noreply.github.com> Date: Mon, 17 Jul 2023 16:08:52 +0200 Subject: [PATCH] Fix vendor library inclusion (#111) * setup.py: Install the entire vendored ovs library Without the __init__.py it won't get properly detected. Signed-off-by: Adrian Moreno * README: Remember to use prepare.sh Signed-off-by: Adrian Moreno --------- Signed-off-by: Adrian Moreno --- README.md | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cbcad17..a66c64b 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Latest released version: From the git checkout - pip install . + ./prepare.sh && pip install . ## Enable bash autocomplete diff --git a/setup.py b/setup.py index ddab199..e2d4287 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ keywords="ovs_dbg", name="ovs_dbg", packages=find_namespace_packages( - include=["ovs_dbg", "ovs_dbg.ofparse", "ovs_dbg.vendor.ovs.flow"] + include=["ovs_dbg", "ovs_dbg.ofparse", "ovs_dbg.vendor.ovs"] ), setup_requires=setup_requirements, scripts=[