-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathsetup.py
41 lines (36 loc) · 1.3 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
from os import path
from setuptools import setup, find_packages
version = {}
with open("src/uvm/version.py") as fp:
exec(fp.read(), version)
def read_file(fname):
return open(path.join(path.dirname(__file__), fname)).read()
setup(
name="uvm-python",
url="https://github.com/tpoikela/uvm-python",
author="Tuomas Poikela",
author_email="[email protected]",
description=("uvm-python UVM implementation in Python on top of cocotb"),
long_description=read_file("README.md"),
long_description_content_type="text/markdown",
license="Apache 2.0",
keywords=["UVM", "SystemVerilog", "Verilog", "RTL", "Coverage"],
packages=find_packages(where="src"),
package_dir={"": "src"},
setup_requires=["setuptools_scm",],
python_requires=">=3.8",
version=version['__version__'],
install_requires=[
#"cocotb @ git+https://github.com/cocotb/cocotb@88bca3c9a9515c9ed399ca6dcf569696fded23f7#egg=cocotb",
"cocotb>=1.9.2",
"cocotb-bus>=0.1.1",
"cocotb-coverage>=1.1.0",
"regex>=2019.11.1"
],
platforms="any",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
],
)