DCAEGEN2-1920 enhance policy plugin for error conditions
[dcaegen2/platform/plugins.git] / dcae-policy / setup.py
1 # ================================================================================
2 # Copyright (c) 2017-2019 AT&T Intellectual Property. All rights reserved.
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
19 """package for dcaepolicyplugin - getting policies from policy-engine through policy-handler"""
20
21 from setuptools import setup
22
23 setup(
24     name='dcaepolicyplugin',
25     description='Cloudify plugin for dcae.nodes.policy node to retrieve the policy config',
26     version="2.3.2",
27     author='Alex Shatov',
28     packages=['dcaepolicyplugin'],
29     install_requires=[
30         "requests>=2.11.0,<3.0.0"
31     ],
32     keywords='policy dcae controller cloudify plugin',
33     classifiers=[
34         'Development Status :: 4 - Beta',
35         'Intended Audience :: Developers',
36         'Programming Language :: Python :: 2.7'
37     ]
38 )