[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-48]
set version number to fearow set version number to fearow.
This commit is contained in:
parent
7a3323118e
commit
11799765e2
1
Makefile
1
Makefile
|
@ -4,6 +4,7 @@
|
||||||
# charmander (10nov03)
|
# charmander (10nov03)
|
||||||
# doduo (04jan04) - 0.9
|
# doduo (04jan04) - 0.9
|
||||||
# eevee (08mar04)
|
# eevee (08mar04)
|
||||||
|
# fearow (???)
|
||||||
|
|
||||||
release:
|
release:
|
||||||
python ./setup.py sdist --formats=zip
|
python ./setup.py sdist --formats=zip
|
||||||
|
|
5
README
5
README
|
@ -1,5 +1,5 @@
|
||||||
paramiko 0.9
|
paramiko 0.9
|
||||||
"fearow" release, 06 apr 2004
|
"fearow" release, 10 apr 2004
|
||||||
|
|
||||||
Copyright (c) 2003-2004 Robey Pointer <robey@lag.net>
|
Copyright (c) 2003-2004 Robey Pointer <robey@lag.net>
|
||||||
|
|
||||||
|
@ -32,6 +32,9 @@ pyCrypt <http://www.amk.ca/python/code/crypto.html>
|
||||||
|
|
||||||
PyCrypt compiled for Win32 can be downloaded from the HashTar homepage:
|
PyCrypt compiled for Win32 can be downloaded from the HashTar homepage:
|
||||||
http://nitace.bsd.uchicago.edu:8080/hashtar
|
http://nitace.bsd.uchicago.edu:8080/hashtar
|
||||||
|
you can also build it yourself using the free MinGW tools and this command
|
||||||
|
line (thanks to Roger Binns for the info):
|
||||||
|
python setup.py build --compiler=mingw32 bdist_wininst
|
||||||
|
|
||||||
|
|
||||||
*** PORTABILITY
|
*** PORTABILITY
|
||||||
|
|
|
@ -48,7 +48,7 @@ released under the GNU Lesser General Public License (LGPL).
|
||||||
|
|
||||||
Website: U{http://www.lag.net/~robey/paramiko/}
|
Website: U{http://www.lag.net/~robey/paramiko/}
|
||||||
|
|
||||||
@version: 0.9 (eevee)
|
@version: 0.9 (fearow)
|
||||||
@author: Robey Pointer
|
@author: Robey Pointer
|
||||||
@contact: robey@lag.net
|
@contact: robey@lag.net
|
||||||
@license: GNU Lesser General Public License (LGPL)
|
@license: GNU Lesser General Public License (LGPL)
|
||||||
|
@ -61,8 +61,8 @@ if sys.version_info < (2, 2):
|
||||||
|
|
||||||
|
|
||||||
__author__ = "Robey Pointer <robey@lag.net>"
|
__author__ = "Robey Pointer <robey@lag.net>"
|
||||||
__date__ = "08 Mar 2004"
|
__date__ = "10 Apr 2004"
|
||||||
__version__ = "0.9-eevee"
|
__version__ = "0.9-fearow"
|
||||||
#__credits__ = "Huzzah!"
|
#__credits__ = "Huzzah!"
|
||||||
__license__ = "GNU Lesser General Public License (LGPL)"
|
__license__ = "GNU Lesser General Public License (LGPL)"
|
||||||
|
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -13,13 +13,13 @@ Required packages:
|
||||||
'''
|
'''
|
||||||
|
|
||||||
setup(name = "paramiko",
|
setup(name = "paramiko",
|
||||||
version = "0.9-eevee",
|
version = "0.9-fearow",
|
||||||
description = "SSH2 protocol library",
|
description = "SSH2 protocol library",
|
||||||
author = "Robey Pointer",
|
author = "Robey Pointer",
|
||||||
author_email = "robey@lag.net",
|
author_email = "robey@lag.net",
|
||||||
url = "http://www.lag.net/~robey/paramiko/",
|
url = "http://www.lag.net/~robey/paramiko/",
|
||||||
packages = [ 'paramiko' ],
|
packages = [ 'paramiko' ],
|
||||||
download_url = 'http://www.lag.net/~robey/paramiko/paramiko-0.9-eevee.zip',
|
download_url = 'http://www.lag.net/~robey/paramiko/paramiko-0.9-fearow.zip',
|
||||||
license = 'LGPL',
|
license = 'LGPL',
|
||||||
platforms = 'Posix; MacOS X; Windows',
|
platforms = 'Posix; MacOS X; Windows',
|
||||||
classifiers = [ 'Development Status :: 3 - Alpha',
|
classifiers = [ 'Development Status :: 3 - Alpha',
|
||||||
|
|
Loading…
Reference in New Issue