Skip to content

Commit

Permalink
Use README as package description. (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
zamzterz authored Jul 23, 2019
1 parent 9e7b787 commit c1494d7
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 16 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ dist/
.coverage
coverage.xml
.pytest_cache
.venv/
37 changes: 21 additions & 16 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
from setuptools import setup, find_packages
from setuptools import setup

with open('README.md') as f:
long_description = f.read()

setup(
name='Flask-pyoidc',
version='2.1.0',
packages=['flask_pyoidc'],
package_dir={'': 'src'},
url='https://github.com/zamzterz/flask-pyoidc',
license='Apache 2.0',
author='Samuel Gulliksson',
author_email='[email protected]',
description='Flask extension for OpenID Connect authentication.',
install_requires=[
'oic==0.12',
'Flask',
'requests'
],
package_data={'flask_pyoidc': ['files/parse_fragment.html']},
name='Flask-pyoidc',
version='2.1.0',
packages=['flask_pyoidc'],
package_dir={'': 'src'},
url='https://github.com/zamzterz/flask-pyoidc',
license='Apache 2.0',
author='Samuel Gulliksson',
author_email='[email protected]',
description='Flask extension for OpenID Connect authentication.',
install_requires=[
'oic==0.12',
'Flask',
'requests'
],
package_data={'flask_pyoidc': ['files/parse_fragment.html']},
long_description=long_description,
long_description_content_type='text/markdown',
)

0 comments on commit c1494d7

Please sign in to comment.