File tree Expand file tree Collapse file tree 3 files changed +28
-15
lines changed Expand file tree Collapse file tree 3 files changed +28
-15
lines changed Original file line number Diff line number Diff line change @@ -87,20 +87,27 @@ sudo apt install iverilog
87
87
- Pyverilog: 1.1.3 or later
88
88
- Jinja2: 2.10 or later
89
89
- NumPy: 1.14 or later
90
- - pytest: 3.2 or later
91
- - pytest-pythonpath: 0.7 or later
92
90
93
91
```
94
- pip3 install pyverilog jinja2 numpy pytest pytest-pythonpath
92
+ pip3 install pyverilog jinja2 numpy
95
93
```
96
94
97
- Optional depedency
95
+ Optional Installation
98
96
--------------------
99
97
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
+
100
107
- Graphviz: 2.38.0 or later
101
108
- Pygraphviz: 1.3.1 or later
102
109
103
- These softwares are required for graph visualization by veriloggen.dataflow:
110
+ These are required for graph visualization by veriloggen.dataflow:
104
111
105
112
```
106
113
sudo apt install graphviz
Original file line number Diff line number Diff line change @@ -102,21 +102,28 @@ Requirements
102
102
- Pyverilog: 1.1.3 or later
103
103
- Jinja2: 2.10 or later
104
104
- NumPy: 1.14 or later
105
+
106
+ ::
107
+
108
+ pip3 install pyverilog jinja2 numpy
109
+
110
+ Optional Installation
111
+ ---------------------
112
+
105
113
- pytest: 3.2 or later
106
114
- pytest-pythonpath: 0.7 or later
107
115
108
- ::
116
+ These are required for the testing execution of test codes in tests and
117
+ examples.
109
118
110
- pip3 install pyverilog jinja2 numpy pytest pytest-pythonpath
119
+ ::
111
120
112
- Optional depedency
113
- ------------------
121
+ pip3 install pytest pytest-pythonpath
114
122
115
123
- Graphviz: 2.38.0 or later
116
124
- Pygraphviz: 1.3.1 or later
117
125
118
- These softwares are required for graph visualization by
119
- veriloggen.dataflow:
126
+ These are required for graph visualization by veriloggen.dataflow:
120
127
121
128
::
122
129
Original file line number Diff line number Diff line change @@ -23,12 +23,11 @@ def read(filename):
23
23
packages = find_packages (),
24
24
package_data = {'veriloggen.utils' : ['VERSION' ],
25
25
'veriloggen.simulation' : ['*.cpp' ], },
26
- install_requires = ['pyverilog>=1.1.3' ,
26
+ install_requires = ['pyverilog>=1.1.3' ,
27
27
'Jinja2>=2.10' ,
28
- 'numpy>=1.14' ,
29
- 'pytest>=3.2' ,
30
- 'pytest-pythonpath>=0.7' ],
28
+ 'numpy>=1.14' ],
31
29
extras_require = {
30
+ 'test' : ['pytest>=3.2' , 'pytest-pythonpath>=0.7' ],
32
31
'graph' : ['pygraphviz>=1.3.1' ],
33
32
},
34
33
)
You can’t perform that action at this time.
0 commit comments