Re: [ovs-dev] [PATCH v1 01/12] python: ovs: Add flowviz scheleton.

2024-02-29 Thread Eelco Chaudron
On 19 Feb 2024, at 9:14, Adrian Moreno wrote: > Add a new python package (just the scheleton for now) to hold a flow > visualization tool based on the flow parsing library. > > flowviz dependencies are installed via "extras_require", so a user must > run: > > $ pip install .[flowviz] > or > $

[ovs-dev] [PATCH v1 01/12] python: ovs: Add flowviz scheleton.

2024-02-19 Thread Adrian Moreno
Add a new python package (just the scheleton for now) to hold a flow visualization tool based on the flow parsing library. flowviz dependencies are installed via "extras_require", so a user must run: $ pip install .[flowviz] or $ pip install ovs[flowviz] Signed-off-by: Adrian Moreno ---