From 2aeed5e88898caf07262b6557cefe3735836c3e8 Mon Sep 17 00:00:00 2001 From: Lukas Einhaus Date: Fri, 8 Aug 2025 18:13:44 +0200 Subject: [PATCH] stop packaging tests folder Packaging the tests folder occupied a very common namespace for all clients that would install vunit. --- setup.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 9862b9aa2..15adb9c76 100644 --- a/setup.py +++ b/setup.py @@ -39,17 +39,15 @@ def find_all_files(directory, endings=None): DATA_FILES = [] DATA_FILES += find_all_files("vunit", endings=[".tcl"]) DATA_FILES += find_all_files(str(Path("vunit") / "vhdl")) -DATA_FILES += find_all_files(str(Path("vunit") / "verilog"), endings=[".v", ".sv", ".svh"]) +DATA_FILES += find_all_files( + str(Path("vunit") / "verilog"), endings=[".v", ".sv", ".svh"] +) DATA_FILES = [os.path.relpath(file_name, "vunit") for file_name in DATA_FILES] setup( name="vunit_hdl", version=version(), packages=[ - "tests", - "tests.lint", - "tests.unit", - "tests.acceptance", "vunit", "vunit.com", "vunit.parsing",