Skip to content
This repository has been archived by the owner on Jul 24, 2023. It is now read-only.

Commit

Permalink
Update descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
ziima committed Apr 30, 2018
1 parent ee7a9c5 commit a1f08f9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 15 deletions.
8 changes: 1 addition & 7 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,7 +1 @@
include LICENSE NOTICE CHANGELOG MANIFEST.in NEWS background-associations.txt
graft admin
graft contrib
recursive-include examples README discover *.py *.html *.xml
recursive-include openid/test *.txt dhpriv n2b64 *.py
recursive-include openid/test/data *
recursive-include doc *.css *.html
include *.md
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@
[![PyPI](https://img.shields.io/pypi/v/python-openid2.svg)](https://pypi.org/pypi/python-openid2/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/python-openid2.svg)](https://pypi.org/pypi/python-openid2/)

This is the Python OpenID library.
Python OpenID library - OpenID support for servers and consumers.

This is a set of Python packages to support use of the OpenID decentralized identity system in your application.
Want to enable single sign-on for your web site?
Use the `openid.consumer package`.
Want to run your own OpenID server?
Check out `openid.server`.
Includes example code and support for a variety of storage back-ends.

## REQUIREMENTS ##

Expand All @@ -17,7 +24,7 @@ This is the Python OpenID library.

To install the base library, just run the following command:

pip install python-openid2
pip install python-openid2


## GETTING STARTED ##
Expand Down
10 changes: 4 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
# Dependencies for Django example
'djopenid': ('django<1.11.99', ),
}
LONG_DESCRIPTION = open('README.md').read() + '\n\n' + open('Changelog.md').read()
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
Expand All @@ -42,12 +43,9 @@
setup(
name='python-openid2',
version=VERSION,
description='OpenID support for servers and consumers.',
long_description='''This is a set of Python packages to support use of
the OpenID decentralized identity system in your application. Want to enable
single sign-on for your web site? Use the openid.consumer package. Want to
run your own OpenID server? Check out openid.server. Includes example code
and support for a variety of storage back-ends.''',
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',
packages=['openid',
'openid.consumer',
Expand Down

0 comments on commit a1f08f9

Please sign in to comment.