diff --git a/doc/ChangeLog b/doc/ChangeLog index 2efcf90..7f8e61f 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,9 @@ +2006-01-21 Jörgen Stenarson + + * Added README.txt + * Changed package name to pyreadline, changed setup.py to + reflect this. + 2006-01-21 Jörgen Stenarson * Added clipboard functionality. ctypes clipboard code diff --git a/doc/README.txt b/doc/README.txt new file mode 100644 index 0000000..7ee57e7 --- /dev/null +++ b/doc/README.txt @@ -0,0 +1,22 @@ +Install instructions for pyreadline +=================================== + +The pyreadline package is based on the readline package by Gary Bishop. It is +not a complete replacement for GNU readline. The pyreadline package is +currently only for the win32 platform. The pyreadline package tries to improve +the integration with the win32 platform by including such things as copy +paste. + +The pyreadline package installs as pyreadline, you may want to add readline.py +containing the line: +from pyreadline import * + +Dependencies +------------ + + * PyWin32, the win32 Python extensions from + http://starship.python.net/crew/mhammond. + + * This in turn requires Tomas Heller's ctypes from + http://starship.python.net/crew/theller/ctypes. + diff --git a/readline/Console.py b/pyreadline/Console.py similarity index 100% rename from readline/Console.py rename to pyreadline/Console.py diff --git a/readline/PyReadline.py b/pyreadline/PyReadline.py similarity index 100% rename from readline/PyReadline.py rename to pyreadline/PyReadline.py diff --git a/readline/__init__.py b/pyreadline/__init__.py similarity index 100% rename from readline/__init__.py rename to pyreadline/__init__.py diff --git a/readline/clipboard.py b/pyreadline/clipboard.py similarity index 100% rename from readline/clipboard.py rename to pyreadline/clipboard.py diff --git a/readline/keysyms.py b/pyreadline/keysyms.py similarity index 100% rename from readline/keysyms.py rename to pyreadline/keysyms.py diff --git a/setup.py b/setup.py index 8694b89..4e382ad 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,10 @@ from distutils.core import setup -setup(name="readline", +setup(name="pyreadline", version="1.13-svn", description="Python implementation of GNU readline", author="Gary Bishop", author_email="gb@cs.unc.edu", - packages=['readline'], + packages=['pyreadline'], )