1919# Ensure that the source tree is on the sys path
2020sys .path .insert (0 , str (Path (__file__ ).parent .resolve ()))
2121
22- from vunit .about import version , doc # pylint: disable=wrong-import-position
22+ from vunit .about import version # pylint: disable=wrong-import-position
2323from vunit .builtins import osvvm_is_installed # pylint: disable=wrong-import-position
2424
2525
@@ -39,51 +39,12 @@ def find_all_files(directory, endings=None):
3939DATA_FILES = []
4040DATA_FILES += find_all_files ("vunit" , endings = [".tcl" ])
4141DATA_FILES += find_all_files (str (Path ("vunit" ) / "vhdl" ))
42- DATA_FILES += find_all_files (
43- str (Path ("vunit" ) / "verilog" ), endings = [".v" , ".sv" , ".svh" ]
44- )
42+ DATA_FILES += find_all_files (str (Path ("vunit" ) / "verilog" ), endings = [".v" , ".sv" , ".svh" ])
4543DATA_FILES = [os .path .relpath (file_name , "vunit" ) for file_name in DATA_FILES ]
4644
4745setup (
48- name = "vunit_hdl" ,
4946 version = version (),
50- packages = [
51- "vunit" ,
52- "vunit.com" ,
53- "vunit.parsing" ,
54- "vunit.parsing.verilog" ,
55- "vunit.sim_if" ,
56- "vunit.test" ,
57- "vunit.ui" ,
58- "vunit.vivado" ,
59- ],
6047 package_data = {"vunit" : DATA_FILES },
61- zip_safe = False ,
62- url = "https://github.com/VUnit/vunit" ,
63- classifiers = [
64- "Development Status :: 5 - Production/Stable" ,
65- "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)" ,
66- "Natural Language :: English" ,
67- "Intended Audience :: Developers" ,
68- "Programming Language :: Python :: 3.8" ,
69- "Programming Language :: Python :: 3.9" ,
70- "Programming Language :: Python :: 3.10" ,
71- "Programming Language :: Python :: 3.11" ,
72- "Programming Language :: Python :: 3.12" ,
73- "Programming Language :: Python :: 3.13" ,
74- "Operating System :: Microsoft :: Windows" ,
75- "Operating System :: MacOS :: MacOS X" ,
76- "Operating System :: POSIX :: Linux" ,
77- "Topic :: Software Development :: Testing" ,
78- "Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)" ,
79- ],
80- python_requires = ">=3.8" ,
81- install_requires = ["colorama" ],
82- license = "Mozilla Public License 2.0 (MPL 2.0)" ,
83- author = "Lars Asplund" ,
84- author_email = "lars.anders.asplund@gmail.com" ,
85- description = "VUnit is an open source unit testing framework for VHDL/SystemVerilog." ,
86- long_description = doc (),
8748)
8849
8950if not osvvm_is_installed ():
0 commit comments