Azure-plugin not sending REST calls to Azure cloud
[multicloud/azure.git] / azure / aria / aria-rest-server / src / main / python / aria-rest / setup.py
1 #
2 # ============LICENSE_START===================================================
3 # Copyright (c) 2018 Amdocs.  All rights reserved.
4 # ===================================================================
5 # Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 # use this file except in compliance with the License. You may obtain a copy
7 # of the License at
8 #
9 #        http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 # License for the specific language governing permissions and limitations under
15 # the License.
16 # ============LICENSE_END====================================================
17 #
18
19
20 from setuptools import setup
21
22 setup(
23     zip_safe=True,
24     name='aria-rest',
25     version='0.1',
26     author='dewayne',
27     author_email='dewayne@cloudify.co',
28     packages=[
29         'aria_rest'
30     ],
31     entry_points = {
32       'console_scripts' : ['aria-rest=aria_rest.rest:main']
33     },
34     license='LICENSE',
35     description='Aria REST API for ONAP',
36     install_requires=[
37         'distribute',
38         'Flask==0.12.2',
39         'flask-autodoc==0.1.2',
40         'apache-ariatosca==0.2.0'
41     ]
42 )