blob: 26578a0479715eeb53dfb6d01d7860fc163aecd6 [file] [log] [blame]
Wojciech Sliwka032ff222019-07-10 13:48:52 +02001###
2# ============LICENSE_START=======================================================
3# Simulator
4# ================================================================================
5# Copyright (C) 2019 Nokia. All rights reserved.
6# ================================================================================
7# Licensed under the Apache License, Version 2.0 (the "License");
8# you may not use this file except in compliance with the License.
9# You may obtain a copy of the License at
10#
11# http://www.apache.org/licenses/LICENSE-2.0
12#
13# Unless required by applicable law or agreed to in writing, software
14# distributed under the License is distributed on an "AS IS" BASIS,
15# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16# See the License for the specific language governing permissions and
17# limitations under the License.
18# ============LICENSE_END=========================================================
19###
20
21import setuptools
22
23setuptools.setup(
24 name="pnf_simulator_cli",
25 version="5.0.0",
26 description="Command line interface which allows to communicate with PNF SIMULATOR",
27 packages=setuptools.find_packages(),
28 data_files=['cli/data/logging.ini'],
29 classifiers=["Programming Language :: Python :: 3"],
30 install_requires=[
31 'requests==2.20.1',
32 'websockets==7.0'
33 ]
34)