We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9400790 commit 1d9f0bdCopy full SHA for 1d9f0bd
setup.py
@@ -39,17 +39,15 @@ def find_all_files(directory, endings=None):
39
DATA_FILES = []
40
DATA_FILES += find_all_files("vunit", endings=[".tcl"])
41
DATA_FILES += find_all_files(str(Path("vunit") / "vhdl"))
42
-DATA_FILES += find_all_files(str(Path("vunit") / "verilog"), endings=[".v", ".sv", ".svh"])
+DATA_FILES += find_all_files(
43
+ str(Path("vunit") / "verilog"), endings=[".v", ".sv", ".svh"]
44
+)
45
DATA_FILES = [os.path.relpath(file_name, "vunit") for file_name in DATA_FILES]
46
47
setup(
48
name="vunit_hdl",
49
version=version(),
50
packages=[
- "tests",
- "tests.lint",
51
- "tests.unit",
52
- "tests.acceptance",
53
"vunit",
54
"vunit.com",
55
"vunit.parsing",
0 commit comments