blob: 8c80a9004dc5f354ae3e1fe728592ec86cfcca36 [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',
27 author_email='dewayne@gigaspaces.com',
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 'Flask==0.12.2',
38 'flask-autodoc==0.1.2',
39 'apache-ariatosca==0.1.0'
40 ]
41)