diff options
author | Vlastimil Zíma <vlastimil.zima@nic.cz> | 2020-11-25 16:11:48 +0100 |
---|---|---|
committer | Vlastimil Zíma <vlastimil.zima@nic.cz> | 2020-11-25 16:12:21 +0100 |
commit | d7bf3fc69f816385ea9cdadfafbb012fd575f99b (patch) | |
tree | c27d47ee23ac5c84691688c144f8afc506ed2d4a | |
parent | afa6adacbe1a41d8f614c8bce2264dfbe9e76489 (diff) | |
download | openid-move-back.tar.gz |
Move repository backmove-back
-rw-r--r-- | README.md | 14 | ||||
-rw-r--r-- | examples/consumer.py | 2 | ||||
-rw-r--r-- | setup.py | 4 |
3 files changed, 10 insertions, 10 deletions
@@ -1,9 +1,9 @@ -# python-openid2 # +# python-openid # -[](https://travis-ci.org/ziima/python-openid) -[](https://codecov.io/gh/ziima/python-openid) -[](https://pypi.org/pypi/python-openid2/) -[](https://pypi.org/pypi/python-openid2/) +[](https://travis-ci.org/openid/python-openid) +[](https://codecov.io/gh/openid/python-openid) +[](https://pypi.org/pypi/python-openid/) +[](https://pypi.org/pypi/python-openid/) Python OpenID library - OpenID support for servers and consumers. @@ -26,7 +26,7 @@ Includes example code and support for a variety of storage back-ends. To install the base library, just run the following command: - pip install python-openid2 + pip install python-openid ## GETTING STARTED ## @@ -59,7 +59,7 @@ detailed at: ## CONTACT ## Send bug reports, suggestions, comments, and questions to -https://github.com/ziima/python-openid/issues/new +https://github.com/openid/python-openid/issues/new If you have a bugfix or feature you'd like to contribute, don't hesitate to send it to us on GitHub. diff --git a/examples/consumer.py b/examples/consumer.py index 970865a..9d38571 100644 --- a/examples/consumer.py +++ b/examples/consumer.py @@ -427,7 +427,7 @@ Content-type: text/html; charset=UTF-8 <h1>%s</h1> <p> This example consumer uses the <a href= - "https://github.com/ziima/python-openid" >Python + "https://github.com/openid/python-openid" >Python OpenID</a> library. It just verifies that the identifier that you enter is your identifier. </p> @@ -48,12 +48,12 @@ CLASSIFIERS = [ setup( - name='python-openid2', + name='python-openid', version=VERSION, description='Python OpenID library - OpenID support for servers and consumers.', long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown', - url='https://github.com/ziima/python-openid', + url='https://github.com/openid/python-openid', packages=['openid', 'openid.consumer', 'openid.server', |