alex_sh | 62fd5be | 2017-08-24 11:44:59 -0400 | [diff] [blame] | 1 | # ================================================================================ |
Lusheng Ji | cc30700 | 2018-02-12 11:04:54 -0500 | [diff] [blame] | 2 | # Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved. |
alex_sh | 62fd5be | 2017-08-24 11:44:59 -0400 | [diff] [blame] | 3 | # ================================================================================ |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # ============LICENSE_END========================================================= |
| 16 | # |
| 17 | # ECOMP is a trademark and service mark of AT&T Intellectual Property. |
| 18 | |
Alex Shatov | 90f2105 | 2018-01-10 11:39:32 -0500 | [diff] [blame] | 19 | """setup.py is used for package build and distribution""" |
| 20 | |
Alex Shatov | 2200894 | 2017-09-21 14:11:20 -0400 | [diff] [blame] | 21 | from setuptools import setup, find_packages |
alex_sh | 62fd5be | 2017-08-24 11:44:59 -0400 | [diff] [blame] | 22 | |
| 23 | setup( |
Alex Shatov | 2200894 | 2017-09-21 14:11:20 -0400 | [diff] [blame] | 24 | name='onap-dcae-dcaepolicy-lib', |
alex_sh | 62fd5be | 2017-08-24 11:44:59 -0400 | [diff] [blame] | 25 | description='lib of policy decorators to be used by cloudify plugins of dcae controller', |
Alex Shatov | b73f81e | 2018-03-23 14:34:34 -0400 | [diff] [blame] | 26 | version="2.3.0", |
alex_sh | 62fd5be | 2017-08-24 11:44:59 -0400 | [diff] [blame] | 27 | author='Alex Shatov', |
Alex Shatov | 2200894 | 2017-09-21 14:11:20 -0400 | [diff] [blame] | 28 | author_email="alexs@att.com", |
Tommy Carpenter | f3f90e0 | 2017-09-20 21:01:20 -0400 | [diff] [blame] | 29 | license='Apache 2', |
Alex Shatov | 2200894 | 2017-09-21 14:11:20 -0400 | [diff] [blame] | 30 | packages=find_packages(), |
alex_sh | 62fd5be | 2017-08-24 11:44:59 -0400 | [diff] [blame] | 31 | install_requires=[ |
alex_sh | 62fd5be | 2017-08-24 11:44:59 -0400 | [diff] [blame] | 32 | ], |
Alex Shatov | 2200894 | 2017-09-21 14:11:20 -0400 | [diff] [blame] | 33 | keywords='onap policy dcae controller cloudify plugin', |
alex_sh | 62fd5be | 2017-08-24 11:44:59 -0400 | [diff] [blame] | 34 | classifiers=[ |
Alex Shatov | 2200894 | 2017-09-21 14:11:20 -0400 | [diff] [blame] | 35 | 'Intended Audience :: Telecommunications Industry', |
alex_sh | 62fd5be | 2017-08-24 11:44:59 -0400 | [diff] [blame] | 36 | 'Programming Language :: Python :: 2.7' |
| 37 | ] |
| 38 | ) |