diff --git a/pypiserver/core.py b/pypiserver/core.py index f010e4f..c03d7c0 100755 --- a/pypiserver/core.py +++ b/pypiserver/core.py @@ -1,7 +1,7 @@ #! /usr/bin/env python """minimal PyPI like server for use with pip/easy_install""" -import os, sys, getopt, re, mimetypes +import os, sys, getopt, re, mimetypes, urlparse from pypiserver import bottle, __version__ sys.modules["bottle"] = bottle @@ -94,15 +94,15 @@ def root():
To use this server with pip, run the the following command:
-pip install -i %(URL)ssimple PACKAGE [PACKAGE2...] +pip install -i %(URL)ssimple/ PACKAGE [PACKAGE2...]
To use this server with easy_install, run the the following command:
--easy_install -i %(URL)ssimple PACKAGE +easy_install -i %(URL)ssimple/ PACKAGE
The complete list of all packages can be found here or via the /simple index.
+The complete list of all packages can be found here or via the simple index.
This instance is running version %(VERSION)s of the pypiserver software.