dfilppi | fd22d8e | 2017-08-03 20:07:26 +0000 | [diff] [blame] | 1 | # |
| 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 | |
| 20 | from setuptools import setup |
| 21 | |
| 22 | setup( |
| 23 | zip_safe=True, |
| 24 | name='aria-rest', |
| 25 | version='0.1', |
| 26 | author='dewayne', |
dfilppi | c2d12a2 | 2017-08-30 21:20:53 +0000 | [diff] [blame] | 27 | author_email='dewayne@cloudify.co', |
dfilppi | fd22d8e | 2017-08-03 20:07:26 +0000 | [diff] [blame] | 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', |
dfilppi | d6d744b | 2017-12-07 14:03:39 +0000 | [diff] [blame^] | 39 | 'apache-ariatosca==0.1.1' |
dfilppi | fd22d8e | 2017-08-03 20:07:26 +0000 | [diff] [blame] | 40 | ] |
| 41 | ) |