85cd488bef
Signed-off-by: Dean Troyer <dtroyer@gmail.com>
22 lines
462 B
Python
22 lines
462 B
Python
|
|
# Copyright (c) 2015 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='api_proxy',
|
|
description='Nova REST API Proxy',
|
|
version='1.0.0',
|
|
license='Apache-2.0',
|
|
platforms=['any'],
|
|
provides='nova_api_proxy',
|
|
packages=find_packages(),
|
|
entry_points={
|
|
'console_scripts': [
|
|
'nova-api-proxy = nova_api_proxy.api_proxy:main',
|
|
],
|
|
}
|
|
)
|