-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 879 Bytes
/
setup.py
File metadata and controls
36 lines (33 loc) · 879 Bytes
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
import os
from setuptools import setup, find_namespace_packages
setup(
name = "pyucis",
packages=find_namespace_packages(where='src'),
package_dir = {'' : 'src'},
package_data = {'' : ['*.xsd', 'share/SKILL.md']},
author = "Matthew Ballance",
author_email = "matt.ballance@gmail.com",
description = ("PyUCIS provides a Python API for manipulating UCIS coverage data."),
long_description = """
Python library for interacting with verification coverage data
""",
license = "Apache 2.0",
keywords = ["SystemVerilog", "Verilog", "RTL", "Coverage"],
url = "https://github.com/fvutils/pyucis",
entry_points={
'console_scripts': [
'pyucis = ucis.__main__:main'
]
},
setup_requires=[
'setuptools_scm',
'ivpm'
],
install_requires=[
'lxml',
'python-jsonschema-objects',
'jsonschema',
'pyyaml',
'rich'
],
)