nfv/nfv/nfv-tests/nfv_unit_tests/setup.py

18 lines
362 B
Python
Executable File

#
# Copyright (c) 2015-2016 Wind River Systems, Inc.
#
# SPDX-License-Identifier: Apache-2.0
#
from setuptools import find_packages
from setuptools import setup
setup(
name='nfv_unit_tests',
description='NFV Unit Tests',
version='1.0.0',
license='Apache-2.0',
platforms=['any'],
provides='nfv_unit_tests',
packages=find_packages()
)