Bartek Grzybowski | 4c88f02 | 2020-02-04 12:16:38 +0100 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | |
| 3 | # COPYRIGHT NOTICE STARTS HERE |
| 4 | # |
| 5 | # Copyright 2020 Samsung Electronics Co., Ltd. |
| 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 | # |
| 19 | # COPYRIGHT NOTICE ENDS HERE |
| 20 | |
| 21 | # This file is only meant to be a single source of truth for package |
| 22 | # dependencies. It's consumed by bin/setup.sh and tox hence shouldn't |
| 23 | # be run directly for package builds as currently vcpe scripts are not |
| 24 | # provided as a python package. |
| 25 | |
| 26 | import setuptools |
| 27 | |
| 28 | # Define vCPE scripts dependencies below |
| 29 | setuptools.setup( |
| 30 | install_requires=[ |
| 31 | 'ipaddress', |
| 32 | 'pyyaml', |
| 33 | 'mysql-connector-python', |
| 34 | 'progressbar2', |
| 35 | 'python-novaclient', |
| 36 | 'python-openstackclient', |
| 37 | 'python-heatclient', |
| 38 | 'kubernetes', |
| 39 | 'netaddr' |
| 40 | ] |
| 41 | ) |