-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (33 loc) · 916 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
38
import os
from setuptools import setup, find_namespace_packages
version="0.0.4"
if "BUILD_NUM" in os.environ.keys():
version = version + "." + os.environ["BUILD_NUM"]
setup(
name = "pyucis-viewer",
version=version,
packages=find_namespace_packages(where='src'),
package_dir = {'' : 'src'},
author = "Matthew Ballance",
author_email = "[email protected]",
description = ("PyUCIS Viewer QT5-based viewer for UCIS data."),
long_description = """
Extremely simple graphical viewer for coverage data in a UCIS database
""",
license = "Apache 2.0",
keywords = ["SystemVerilog", "Verilog", "RTL", "Coverage"],
url = "https://github.com/fvutils/pyucis-viewer",
entry_points={
'console_scripts': [
'pyucis-viewer = pyucis_viewer.__main__:main'
]
},
setup_requires=[
'setuptools_scm',
'ivpm'
],
install_requires=[
'pyqt5',
'pyucis>=0.0.6'
],
)