[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:
Robey Pointer 2004-04-08 05:48:16 +00:00
parent 7a3323118e
commit 11799765e2
4 changed files with 10 additions and 6 deletions

View File

@ -4,6 +4,7 @@
# charmander (10nov03)
# doduo (04jan04) - 0.9
# eevee (08mar04)
# fearow (???)
release:
python ./setup.py sdist --formats=zip

5
README
View File

@ -1,5 +1,5 @@
paramiko 0.9
"fearow" release, 06 apr 2004
"fearow" release, 10 apr 2004
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:
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

View File

@ -48,7 +48,7 @@ released under the GNU Lesser General Public License (LGPL).
Website: U{http://www.lag.net/~robey/paramiko/}
@version: 0.9 (eevee)
@version: 0.9 (fearow)
@author: Robey Pointer
@contact: robey@lag.net
@license: GNU Lesser General Public License (LGPL)
@ -61,8 +61,8 @@ if sys.version_info < (2, 2):
__author__ = "Robey Pointer <robey@lag.net>"
__date__ = "08 Mar 2004"
__version__ = "0.9-eevee"
__date__ = "10 Apr 2004"
__version__ = "0.9-fearow"
#__credits__ = "Huzzah!"
__license__ = "GNU Lesser General Public License (LGPL)"

View File

@ -13,13 +13,13 @@ Required packages:
'''
setup(name = "paramiko",
version = "0.9-eevee",
version = "0.9-fearow",
description = "SSH2 protocol library",
author = "Robey Pointer",
author_email = "robey@lag.net",
url = "http://www.lag.net/~robey/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',
platforms = 'Posix; MacOS X; Windows',
classifiers = [ 'Development Status :: 3 - Alpha',