6cd8940170
Signed-off-by: Dean Troyer <dtroyer@gmail.com>
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={
|
|
}
|
|
)
|