Package libssh2 :: Module version
[frames] | no frames]

Source Code for Module libssh2.version

 1  # 
 2  # pylibssh2 - python bindings for libssh2 library 
 3  # 
 4  # Copyright (C) 2010 Wallix Inc. 
 5  # 
 6  # This library is free software; you can redistribute it and/or modify it 
 7  # under the terms of the GNU Lesser General Public License as published by the 
 8  # Free Software Foundation; either version 2.1 of the License, or (at your 
 9  # option) any later version. 
10  # 
11  # This library is distributed in the hope that it will be useful, but WITHOUT 
12  # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 
13  # FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more 
14  # details. 
15  # 
16  # You should have received a copy of the GNU Lesser General Public License 
17  # along with this library; if not, write to the Free Software Foundation, Inc., 
18  # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
19  # 
20  __doc__ = """Python binding for libssh2 library""" 
21   
22  __version_info__ = (1, 0, 0) 
23  __version__ = '.'.join([ str(v) for v in __version_info__]) 
24  __url__ = 'http://github.com/wallix/pylibssh2' 
25  __author__ = 'Sofian Brabez' 
26  __authoremail__ = 'sbz@wallix.com' 
27