forked from VUnit/vunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
70 lines (63 loc) · 2.7 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
#
# Copyright (c) 2015-2016, Lars Asplund lars.anders.asplund@gmail.com
from setuptools import setup
from vunit.about import version, doc
from vunit.builtins import osvvm_is_installed
import os
from logging import warning
def find_all_files(directory, endings=None):
"""
Recursively find all files within directory
"""
result = []
for root, dirnames, filenames in os.walk(directory):
for filename in filenames:
ending = os.path.splitext(filename)[-1]
if endings is None or ending in endings:
result.append(os.path.join(root, filename))
return result
data_files = []
data_files += find_all_files(os.path.join('vunit'), endings=[".tcl"])
data_files += find_all_files(os.path.join('vunit', 'vhdl'))
data_files += find_all_files(os.path.join('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=['vunit',
'vunit.com',
'vunit.test',
'vunit.parsing',
'vunit.parsing.verilog',
'vunit.test.lint',
'vunit.test.unit',
'vunit.test.acceptance'],
package_data={'vunit': data_files},
zip_safe=False,
url='https://github.com/VUnit/vunit',
classifiers=['Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Natural Language :: English',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Topic :: Software Development :: Testing'],
author='Lars Asplund',
author_email='lars.anders.asplund@gmail.com',
description="VUnit is an open source unit testing framework for VHDL/SystemVerilog.",
long_description=doc())
if not osvvm_is_installed():
warning("""
Found no OSVVM VHDL files. If you're installing from a Git repository and plan to use VUnit's integration
of OSVVM you should run
git submodule update --init --recursive
in your VUnit repository before running setup.py.""")