forked from fvutils/pyvsc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 962 Bytes
/
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
import os
from setuptools import setup, find_namespace_packages
def get_version():
try:
import ivpm
return ivpm.get_pkg_version(__file__)
except:
return "0.0.0"
setup(
name="pyvsc",
version=get_version(),
# packages=find_packages(include=['vsc', 'vsc.*']),
packages=find_namespace_packages(where='src'),
package_dir={'' : 'src'},
author="Matthew Ballance",
author_email="[email protected]",
description=("pyvsc (Verification Stimulus and Coverage) is a Python package for generating randomized stimulus and defining and collecting functional coverage."),
license="Apache 2.0",
keywords = ["Python", "Functional Verification", "Constraints", "Coverage"],
url = "https://github.com/fvutils/pyvsc",
entry_points={
'console_scripts': [
'vsc = vsc.__main__:main'
]
},
setup_requires=[
'setuptools_scm',
'ivpm',
],
install_requires=[
'pyboolector',
'pyucis'
],
)