资源简介
ansible安装所需安装包
代码片段和文件信息
# Copyright (C) 2003-2008 Robey Pointer
#
# This file is part of paramiko.
#
# Paramiko is free software; you can redistribute it and/or modify it under the
# terms of the GNU Lesser General Public License as published by the Free
# Software Foundation; either version 2.1 of the License or (at your option)
# any later version.
#
# Paramiko is distributed in the hope that it will be useful but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Paramiko; if not write to the Free Software Foundation Inc.
# 51 Franklin Street Suite 500 Boston MA 02110-1335 USA.
longdesc = ‘‘‘
This is a library for making SSH2 connections (client or server).
Emphasis is on using SSH2 as an alternative to SSL for making secure
connections between python scripts. All major ciphers and hash methods
are supported. SFTP client and server mode are both supported too.
Required packages:
pyCrypto
To install the ‘in-development version
‘_ use
‘pip install paramiko==dev‘.
‘‘‘
# if someday we want to *require* setuptools uncomment this:
# (it will cause setuptools to be automatically downloaded)
#import ez_setup
#ez_setup.use_setuptools()
import sys
try:
from setuptools import setup
kw = {
‘install_requires‘: [
‘pycrypto >= 2.1 != 2.4‘
‘ecdsa >= 0.11‘
]
}
except ImportError:
from distutils.core import setup
kw = {}
if sys.platform == ‘darwin‘:
import setup_helper
setup_helper.install_custom_make_tarball()
# Version info -- read without importing
_locals = {}
with open(‘paramiko/_version.py‘) as fp:
exec(fp.read() None _locals)
version = _locals[‘__version__‘]
setup(
name = “paramiko“
version = version
description = “SSH2 protocol library“
long_description = longdesc
author = “Jeff Forcier“
author_email = “jeff@bitprophet.org“
url = “https://github.com/paramiko/paramiko/“
packages = [ ‘paramiko‘ ]
license = ‘LGPL‘
platforms = ‘Posix; MacOS X; Windows‘
classifiers = [
‘Development Status :: 5 - Production/Stable‘
‘Intended Audience :: Developers‘
‘License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)‘
‘Operating System :: OS Independent‘
‘Topic :: Internet‘
‘Topic :: Security :: Cryptography‘
‘Programming Language :: Python‘
‘Programming Language :: Python :: 2‘
‘Programming Language :: Python :: 2.6‘
‘Programming Language :: Python :: 2.7‘
‘Programming Language :: Python :: 3‘
‘Programming Language :: Python :: 3.2‘
‘Programming Language :: Python :: 3.3‘
‘Programmin
- 上一篇:惠普服务器网卡驱动
- 下一篇:labview 滤波方法
相关资源
- Ansible 2 Cloud Automation Cookbook
- Ansible-Tower-3.0-中文安装配置及使用指
- Ansible-For-DevOps.pdf
- Ansible for DevOps (2015)
- ansible-for-devops
- 奔跑吧Ansible.pdf.zip
- 奔跑吧ansible.pdf
- ansible源码安装所有工具包和安装脚本
- ansible 2.4.2.0 离线安装 rpm包
- ansible快速入门
- zabbix installation.rar
- Ansible-ansible-role-system_ldap.zip
- ansible讲义
- ansible视频教程,ansible视频教程 百度
- ansible puppet saltstack三款自动化运维工
- 英文原版-Ansible for DevOps 1st Edition
- Ansible-docker-centos7-ansible.zip
评论
共有 条评论