| # Copyright 2020 The ChromiumOS Authors | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| """Setup definitions for depgraph_visualization package.""" | |
| from setuptools import setup | |
| setup( | |
| name="depgraph_visualization", | |
| version="0.0.1", | |
| packages=["depgraph_visualization"], | |
| author="The ChromiumOS Authors", | |
| entry_points={ | |
| "console_scripts": [ | |
| "visualize_depgraph = depgraph_visualization.depgraph_viz:main" | |
| ] | |
| }, | |
| ) |