Skip to content

Commit 0162f68

Browse files
committed
dependency
1 parent 2686731 commit 0162f68

File tree

3 files changed

+28
-15
lines changed

3 files changed

+28
-15
lines changed

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,20 +87,27 @@ sudo apt install iverilog
8787
- Pyverilog: 1.1.3 or later
8888
- Jinja2: 2.10 or later
8989
- NumPy: 1.14 or later
90-
- pytest: 3.2 or later
91-
- pytest-pythonpath: 0.7 or later
9290

9391
```
94-
pip3 install pyverilog jinja2 numpy pytest pytest-pythonpath
92+
pip3 install pyverilog jinja2 numpy
9593
```
9694

97-
Optional depedency
95+
Optional Installation
9896
--------------------
9997

98+
- pytest: 3.2 or later
99+
- pytest-pythonpath: 0.7 or later
100+
101+
These are required for the testing execution of test codes in tests and examples.
102+
103+
```
104+
pip3 install pytest pytest-pythonpath
105+
```
106+
100107
- Graphviz: 2.38.0 or later
101108
- Pygraphviz: 1.3.1 or later
102109

103-
These softwares are required for graph visualization by veriloggen.dataflow:
110+
These are required for graph visualization by veriloggen.dataflow:
104111

105112
```
106113
sudo apt install graphviz

README.rst

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -102,21 +102,28 @@ Requirements
102102
- Pyverilog: 1.1.3 or later
103103
- Jinja2: 2.10 or later
104104
- NumPy: 1.14 or later
105+
106+
::
107+
108+
pip3 install pyverilog jinja2 numpy
109+
110+
Optional Installation
111+
---------------------
112+
105113
- pytest: 3.2 or later
106114
- pytest-pythonpath: 0.7 or later
107115

108-
::
116+
These are required for the testing execution of test codes in tests and
117+
examples.
109118

110-
pip3 install pyverilog jinja2 numpy pytest pytest-pythonpath
119+
::
111120

112-
Optional depedency
113-
------------------
121+
pip3 install pytest pytest-pythonpath
114122

115123
- Graphviz: 2.38.0 or later
116124
- Pygraphviz: 1.3.1 or later
117125

118-
These softwares are required for graph visualization by
119-
veriloggen.dataflow:
126+
These are required for graph visualization by veriloggen.dataflow:
120127

121128
::
122129

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,11 @@ def read(filename):
2323
packages=find_packages(),
2424
package_data={'veriloggen.utils': ['VERSION'],
2525
'veriloggen.simulation': ['*.cpp'], },
26-
install_requires=['pyverilog>=1.1.3',
26+
install_requires=['pyverilog>=1.1.3',
2727
'Jinja2>=2.10',
28-
'numpy>=1.14',
29-
'pytest>=3.2',
30-
'pytest-pythonpath>=0.7'],
28+
'numpy>=1.14'],
3129
extras_require={
30+
'test': ['pytest>=3.2', 'pytest-pythonpath>=0.7'],
3231
'graph': ['pygraphviz>=1.3.1'],
3332
},
3433
)

0 commit comments

Comments
 (0)