[pyrepl-checkins] pyrepl README,1.3,1.4 setup.py,1.2,1.3
mwh@codespeak.net
mwh@codespeak.net
Sun, 14 Mar 2004 14:42:43 +0100 (MET)
Update of /cvs/pyrepl/pyrepl
In directory thoth.codespeak.net:/tmp/cvs-serv26320
Modified Files:
README setup.py
Log Message:
preparation for a release!?
Index: README
===================================================================
RCS file: /cvs/pyrepl/pyrepl/README,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** README 16 May 2003 20:49:08 -0000 1.3
--- README 14 Mar 2004 13:42:40 -0000 1.4
***************
*** 1,8 ****
! This is pyrepl 0.7, a readline-a-like in Python.
! http://starship.python.net/crew/mwh/hacks/pyrepl.html
! It requires python 2.1 (or newer) with either the curses and termios
! modules built or pygame, and features:
* sane multi-line editing
--- 1,8 ----
! This is pyrepl 0.8, a readline-a-like in Python.
! http://pyrepl.codespeak.net/
! It requires python 2.2 (or newer) with the curses and termios modules
! built and features:
* sane multi-line editing
***************
*** 19,22 ****
--- 19,23 ----
* generally speaking, a much more interactive experience than readline
(it's a bit like a cross between readline and emacs's mini-buffer)
+ * unicode support (given terminal support)
There are probably still a few little bugs & misfeatures, but _I_ like
***************
*** 44,47 ****
--- 45,56 ----
comments!)
+ Summary of 0.8.0:
+ + A whole bundle of things.
+ - unicode support (although working out what encoding the terminal
+ is using can be "tricky")
+ - internal rearchitecting
+ - probably a bunch of new bugs...
+ + Development and web-presence moved to codespeak.net
+
Summary of new stuff in 0.7.1:
+ A non-broken setup.py...
Index: setup.py
===================================================================
RCS file: /cvs/pyrepl/pyrepl/setup.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** setup.py 17 Jan 2003 13:25:54 -0000 1.2
--- setup.py 14 Mar 2004 13:42:40 -0000 1.3
***************
*** 33,37 ****
setup(
name = "pyrepl",
! version = "0.7.2",
author = "Michael Hudson",
author_email = "mwh@python.net",
--- 33,37 ----
setup(
name = "pyrepl",
! version = "0.8.0",
author = "Michael Hudson",
author_email = "mwh@python.net",
***************
*** 40,46 ****
description = "A library for building flexible command line interfaces",
platforms = ["unix", "linux"],
-
packages = ["pyrepl"],
! ext_modules = [Extension("_pyrepl_utils", ["pyrepl_utilsmodule.c"])],
scripts = ["pythoni"],
long_description = long_desc,
--- 40,45 ----
description = "A library for building flexible command line interfaces",
platforms = ["unix", "linux"],
packages = ["pyrepl"],
! #ext_modules = [Extension("_pyrepl_utils", ["pyrepl_utilsmodule.c"])],
scripts = ["pythoni"],
long_description = long_desc,