blob: 291e8197d8c6c59e2004f5aae84cc52417a65de2 [file] [log] [blame] [edit]
# 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"
]
},
)