-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
41 lines (36 loc) · 977 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
39
40
import os
from setuptools import setup, find_namespace_packages
version="0.1.4"
if "BUILD_NUM" in os.environ.keys():
version = version + "." + os.environ["BUILD_NUM"]
setup(
name = "pyucis",
packages=find_namespace_packages(where='src'),
package_dir = {'' : 'src'},
package_data = {'' : ['*.xsd']},
version=version,
author = "Matthew Ballance",
author_email = "[email protected]",
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'
],
)