summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Smith <qwcode@gmail.com>2014-03-11 09:08:52 -0700
committerMarcus Smith <qwcode@gmail.com>2014-03-11 09:08:52 -0700
commitaf1d6d52a34ca037898b05b517cb49c3db9356f7 (patch)
tree706654efbc7c7c041640fe40b727b1ca468a3e39
parente7f4e4d816b86dec283631364d1d8ab9d970eac1 (diff)
downloadpip-af1d6d52a34ca037898b05b517cb49c3db9356f7.tar.gz
have pip just be an installer for simplicity. remove the vague "manage" description.
-rw-r--r--README.rst2
-rw-r--r--docs/index.rst2
-rw-r--r--setup.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/README.rst b/README.rst
index 32c7d3acc..1889e2339 100644
--- a/README.rst
+++ b/README.rst
@@ -3,7 +3,7 @@ pip
The `PyPA recommended
<https://python-packaging-user-guide.readthedocs.org/en/latest/current.html>`_
-tool for installing and managing Python packages.
+tool for installing Python packages.
* `Installation <http://www.pip-installer.org/en/latest/installing.html>`_
* `Documentation <http://www.pip-installer.org>`_
diff --git a/docs/index.rst b/docs/index.rst
index 701d11387..d04ae1fbc 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -10,7 +10,7 @@ Dev IRC: #pypa
The `PyPA recommended
<https://python-packaging-user-guide.readthedocs.org/en/latest/current.html>`_
-tool for installing and managing Python packages.
+tool for installing Python packages.
.. toctree::
:maxdepth: 2
diff --git a/setup.py b/setup.py
index e04a22db4..a195957a1 100644
--- a/setup.py
+++ b/setup.py
@@ -45,7 +45,7 @@ tests_require = ['pytest', 'virtualenv>=1.10', 'scripttest>=1.3', 'mock']
setup(
name="pip",
version=find_version("pip", "__init__.py"),
- description="A tool for installing and managing Python packages.",
+ description="The PyPA recommended tool for installing Python packages.",
long_description=long_description,
classifiers=[
"Development Status :: 5 - Production/Stable",