Metadata-Version: 2.1
Name: VRP
Version: 0.0.3
Summary: A Python package for plotting Vehicle Routing Problem (VRP) solutions.
Home-page: https://github.com/phguo/PyVRP
Author: Penghui Guo
Author-email: m@guo.ph
License: GPL-3.0
Description: # VRP
        
        A Python package for plotting Vehicle Routing Problem (VRP) solutions.
        
        ## Usage
        
        Install this package using `pip install VRP`, then
        
        ```Python
        from vrp.draw import draw_vrp
        
        pos = {1: (0, 0), 2: (1, 1), 3: (2, 3)}
        routes = [[1, 2, 3, 1]]
        draw_vrp(pos, routes, save_file=True)
        ```
Platform: UNKNOWN
Description-Content-Type: text/markdown
