summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--INSTALL.txt23
-rwxr-xr-xREADME.rst2
-rwxr-xr-xsetup.py3
3 files changed, 1 insertions, 27 deletions
diff --git a/INSTALL.txt b/INSTALL.txt
deleted file mode 100644
index 76e138e5..00000000
--- a/INSTALL.txt
+++ /dev/null
@@ -1,23 +0,0 @@
-cmd2 can be installed from PyPI by ``easy_install`` or ``pip``.
-
-Development trunk can be downloaded with mercurial::
-
- hg clone http://hg.assembla.com/python-cmd2
-
-To install from the trunk, ``cd python-cmd2`` and run ``python setup.py install`` or ``python setup.py develop`` (requires setuptools). (Use ``root`` account, or ``sudo``, on *nix.)
-
-Python 3
---------
-
-The Python 3 egg downloaded from PyPI or installed by ``pip`` or ``easy_install`` is ready to go.
-
-To install from source for Python 3, the 2to3 transformations must be applied to ``cmd2.py``.
-The best way to do this is to install ``distribute`` on Python 3 before installing
-``cmd1``::
-
- curl -O http://python-distribute.org/distribute_setup.py
- sudo python3 distribute_setup.py
-
- sudo python3 setup.py install
-
-2to3 won't run if there's a ``build`` directory that's newer than your source code. Deleting the ``cmd2/build`` directory before running setup.py ensures that this won't be a problem.
diff --git a/README.rst b/README.rst
index 1f65b4fc..7f8db6cb 100755
--- a/README.rst
+++ b/README.rst
@@ -80,7 +80,7 @@ Instructions for implementing each feature follow.
See Python standard library's `optparse` documentation: http://docs.python.org/lib/optparse-defining-options.html
-cmd2 can be installed with `easy_install cmd2`
+cmd2 can be installed from a Linux distribution or using `pip install cmd2`
Cheese Shop page: http://pypi.python.org/pypi/cmd2
diff --git a/setup.py b/setup.py
index 01d939c2..d260b40e 100755
--- a/setup.py
+++ b/setup.py
@@ -41,9 +41,6 @@ Drop-in replacement adds several features for command-prompt tools:
Useable without modification anywhere cmd is used; simply import cmd2.Cmd in place of cmd.Cmd.
-Running `2to3 <http://docs.python.org/library/2to3.html>` against ``cmd2.py``
-generates working, Python3-based code.
-
See docs at http://packages.python.org/cmd2/
""",