7b127659e5
Add debian packaging infrastructure for fm-api so we can create a debian packaging for it. Also update the directory layout due to limitations of the STX tool. Update the centos build information to reflect the new layout. Story: 2009101 Task: 43091 Signed-off-by: Charles Short <charles.short@windriver.com> Change-Id: I5c9784647581f31384d7475f596663adc0d26498
18 lines
289 B
Python
18 lines
289 B
Python
#
|
|
# Copyright (c) 2013-2014 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
import setuptools
|
|
|
|
setuptools.setup(
|
|
name='fm_api',
|
|
description='CGCS FM Python API',
|
|
version='1.0.0',
|
|
license='Apache-2.0',
|
|
packages=['fm_api'],
|
|
entry_points={
|
|
}
|
|
)
|