Update project maturity status
[multicloud/azure.git] / azure / aria / aria-extension-cloudify / setup.py
1 #
2 # Copyright (c) 2016 GigaSpaces Technologies Ltd. All rights reserved.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License"); you may
5 # not use this file except in compliance with the License. You may obtain
6 # 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, WITHOUT
12 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 # License for the specific language governing permissions and limitations
14 # under the License.
15 #
16
17 import sys
18
19 from setuptools import setup, find_packages
20
21 _PACKAGE_NAME = 'aria-extension-cloudify'
22 _PYTHON_SUPPORTED_VERSIONS = [(2, 6), (2, 7)]
23
24 if (sys.version_info[0], sys.version_info[1]) not in _PYTHON_SUPPORTED_VERSIONS:
25     raise NotImplementedError('{0} Package support Python version 2.6 & 2.7 Only'
26                               .format(_PACKAGE_NAME))
27
28 setup(
29     name=_PACKAGE_NAME,
30     version='4.1',
31     description="Enable ARIA to utilize some of Cloudify's abilities, such as interfacing with AWS "
32                 "and Openstack.",
33     author='Gigaspaces',
34     author_email='cosmo-admin@gigaspaces.com',
35     license='LICENSE',
36
37     packages=find_packages(include=['adapters*']),
38     install_requires=['apache-ariatosca'],
39     entry_points={
40         'aria_extension': [
41             'adapter = adapters.extension'
42         ]
43     }
44 )