diff --git a/README.md b/README.md index ed303bc..197a8bb 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,13 @@ LDAP + Kerberos authenticator for nginx's auth_request module. ## Installation ```sh -pip install git://github.com/quantum5/nginx-krbauth.git +pip install nginx-krbauth +``` + +If, for some reason, you want to use the latest code from git: + +```sh +pip install git+https://github.com/quantum5/nginx-krbauth.git ``` ## Usage diff --git a/setup.py b/setup.py index 7cc710d..6fdded6 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f: setup( name='nginx_krbauth', - version='0.0.1', + version='0.0.2', py_modules=['nginx_krbauth'], install_requires=['flask', 'gssapi', 'python-ldap'],