Anna Eilering 43ffa1656d Update paramiko dependancy to be fixed at 1.17.0 due to paramiko updates.
Paramiko 2.0 changed the paramiko dependancy to require cryptography
which can cause issues with OpenCafe installations of the SSH plugin.

Change-Id: Ied6793e0a42e1d7de6a15db19e9883399d3301d6
2016-05-03 15:39:05 -05:00

27 lines
976 B
Python

# Copyright 2015 Rackspace
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from setuptools import setup, find_packages
setup(
name='cafe_ssh_plugin',
version='0.0.1',
description='Paramiko based plugin for OpenCAFE',
author='Rackspace Cloud QE',
author_email='cloud-cafe@lists.rackspace.com',
url='http://rackspace.com',
packages=find_packages(),
namespace_packages=['cafe'],
install_requires=['paramiko >= 1.17.0, <2'],
zip_safe=False)