blob: 84e9a1956025566c49fb5ca75b7c979e88c96b0c [file] [log] [blame]
dfilppifd22d8e2017-08-03 20:07:26 +00001#
2# ============LICENSE_START===================================================
3# Copyright (c) 2017 Cloudify.co. 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
20from setuptools import setup
21
22setup(
23 zip_safe=True,
24 name='aria-rest',
25 version='0.1',
26 author='dewayne',
dfilppic2d12a22017-08-30 21:20:53 +000027 author_email='dewayne@cloudify.co',
dfilppifd22d8e2017-08-03 20:07:26 +000028 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=[
dfilppi18266f82017-12-26 21:54:15 +000037 'distribute',
dfilppifd22d8e2017-08-03 20:07:26 +000038 'Flask==0.12.2',
39 'flask-autodoc==0.1.2',
dfilppid6d744b2017-12-07 14:03:39 +000040 'apache-ariatosca==0.1.1'
dfilppifd22d8e2017-08-03 20:07:26 +000041 ]
42)