diff --git a/README.rst b/README.rst index 3d79628..beaad51 100644 --- a/README.rst +++ b/README.rst @@ -7,7 +7,7 @@ pypiserver - minimal PyPI server for use with pip/easy_install |proj-license| :Maintainer: Kostis Anagnostopoulos -:Version: 1.1.9-dev.0 +:Version: 1.1.9-dev.1 :Date: 2015-03-8 :Source: https://github.com/pypiserver/pypiserver :PyPI: https://pypi.python.org/pypi/pypiserver @@ -112,11 +112,11 @@ Currently only password-protected uploads are supported! .. Tip:: To avoid storing you passwords on disk in clear text, you may either: - Use the `register` command with the `-r` option, like that:: - + python setup.py sdist register -r local upload -r local - + - Use `twine `_ library which - breaks the procedure in two steps. + breaks the procedure in two steps. Client-side configurations @@ -239,16 +239,16 @@ Running ``pypi-server -h`` will print a detailed usage message:: -P foo/htpasswd.txt -a update,download To drop all authentications, use: -P . -a . - Note that when uploads are not protected, the `register` command + Note that when uploads are not protected, the `register` command is not necessary, but `~/.pypirc` still need username and password fields, even if bogus. By default, only 'update' is password-protected. -P, --passwords PASSWORD_FILE - use apache htpasswd file PASSWORD_FILE to set usernames & passwords when + use apache htpasswd file PASSWORD_FILE to set usernames & passwords when authenticating certain actions (see -a option). - If you want to allow un-authorized access, set this option and -a - explicitly to empty (either '.' or''). + If you want to allow un-authorized access, set this option and -a + explicitly to empty (either '.' or''). --disable-fallback disable redirect to real PyPI index for packages not found in the diff --git a/pypiserver/__init__.py b/pypiserver/__init__.py index 830f517..a313be0 100644 --- a/pypiserver/__init__.py +++ b/pypiserver/__init__.py @@ -1,8 +1,11 @@ import re as _re -version = __version__ = "1.1.9-dev.0" +version = __version__ = "1.1.9-dev.1" __version_info__ = tuple(_re.split('[.-]', __version__)) -__updated__ = "2015-09-17 02:05:08" +__updated__ = "2015-09-19 02:07:51" +__title__ = "pypiserver" +__summary__ = "A minimal PyPI server for use with pip/easy_install." +__uri__ = "https://github.com/pypiserver/pypiserver" def app(root=None, redirect_to_fallback=True,