forked from chipsalliance/riscv-dv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
25 lines (23 loc) · 769 Bytes
/
setup.cfg
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
[metadata]
name = riscv-dv
description = "RISCV-DV is a SV/UVM instruction generator for RISC-V processor verification."
long_description = file: README.md
version = 1.0
author = Google, Inc.
author_email = [email protected].
license = LICENSE.txt
url = https://github.com/google/riscv-dv.git
[options]
# Automatically find all files beneath the riscv-dv directory and include them.
packages = find:
# Parse the MANIFEST.in file and include those files.
include_package_data = True
# Let pip install dependencies automatically.
install_requires = PyYAML
bitstring
python_requires = >=3
[options.entry_points]
# Set up an executable script that calls the main() function in riscv-dv
console_scripts =
run = run:main
cov = cov:main