ha/service-mgmt-tools/sm-tools/setup.py
SidneyAn 729a8e7f36 Remove retired codes populated “V1” tables
the old source code which populate "V1" tables are no longer being used
in the current stx-ha design architecture.

Remove list:
  service-mgmt/sm-db-1.0.0/upgrades/
  service-mgmt/sm-db-1.0.0/scripts/sm-db-populate.script
  service-mgmt/sm-db-1.0.0/patches/*install.patch
  service-mgmt/sm-db-1.0.0/database/sm_database.xlsb
  service-mgmt-tools/sm-tools/sm-tools/sm-patch.py

Story: 2004752
Task: 28842

Change-Id: I9f230f900baafcb8495d8f7ed739bf8e182abae5
Signed-off-by: SidneyAn <ran1.an@intel.com>
2019-01-29 00:12:11 +08:00

29 lines
901 B
Python
Executable File

#
# Copyright (c) 2013-2014, 2016 Wind River Systems, Inc.
#
# SPDX-License-Identifier: Apache-2.0
#
import setuptools
setuptools.setup(
name='sm_tools',
description='Service Management Tools',
version='1.0.0',
license='Apache-2.0',
packages=['sm_tools'],
entry_points={
'console_scripts': [
'sm-configure = sm_tools.sm_configure:main',
'sm-provision = sm_tools.sm_provision:main',
'sm-deprovision = sm_tools.sm_provision:main ',
'sm-dump = sm_tools.sm_dump:main',
'sm-query = sm_tools.sm_query:main',
'sm-manage = sm_tools.sm_action:main',
'sm-unmanage = sm_tools.sm_action:main ',
'sm-restart-safe = sm_tools.sm_action:main ',
'sm-restart = sm_tools.sm_action:main ',
'sm-iface-state = sm_tools.sm_domain_interface_set_state:main '
]}
)