Skip to content

Commit ee26175

Browse files
committed
README
1 parent 51c3893 commit ee26175

File tree

3 files changed

+12
-15
lines changed

3 files changed

+12
-15
lines changed

.github/workflows/python-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
python-version: [3.8]
19-
django-version: ["2.2", "3.0", "3.1"]
19+
django-version: ["2.2", "3.0"]
2020

2121
steps:
2222
- uses: actions/checkout@v2
@@ -28,8 +28,8 @@ jobs:
2828
run: |
2929
sudo apt-get update && sudo apt-get install xmlsec1
3030
python -m pip install --upgrade pip tox rstcheck setuptools codecov
31-
- name: Readme check
32-
if: ${{ matrix.python-version }} == 3.8 && ${{ matrix.django-version }} == "3.0"
33-
run: rstcheck README.rst
31+
#- name: Readme check
32+
#if: ${{ matrix.python-version }} == 3.8 && ${{ matrix.django-version }} == "3.0"
33+
#run: rstcheck README.rst
3434
- name: Tests
3535
run: tox -e py${{ matrix.python-version }}-django${{ matrix.django-version }}

README.md

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
11
djangosaml2
22
===========
33

4-
![CI build](https://github.com/peppelinu/djangosaml2/workflows/djangosaml2/badge.svg)
4+
![CI build](https://github.com/peppelinux/djangosaml2/workflows/djangosaml2/badge.svg)
55
![Python version](https://img.shields.io/badge/license-Apache%202-blue.svg)
66
![License](https://img.shields.io/badge/python-3.7%20%7C%203.8%20%7C%203.9-blue.svg)
77

88

99
A Django application that builds a Fully Compliant SAML2 Service Provider on top of PySAML2 library.
10-
Djangosaml2 protects your project with a SAML2 SSO Authentication, it
11-
will talk SAML2 with your Identity Provider allowing you to use this authentication mechanism.
12-
This document will guide you through a few simple steps to accomplish such goal.
10+
Djangosaml2 protects your project with a SAML2 SSO Authentication.
1311

1412

15-
Please consult the `official Documentation of djangosaml2 <>`_ to get started.
13+
Please consult the [official Documentation of djangosaml2](https://djangosaml2.readthedocs.io/en/latest/) to get started.
1614

1715

1816
Contributing
@@ -29,14 +27,12 @@ push code directly on the master branch.
2927
Special thanks
3028
==============
3129

32-
The story of this project is a community-driven project, born as a
33-
fork of another project and maintained by different authors at different times, such as:
34-
30+
This is a community-driven project, born as a
31+
fork and maintained by different authors at different times, such as:
3532

3633
- [Lorenzo Gil Sanchez](https://github.com/lorenzogil)
3734
- [Jozef knaperek](https://github.com/knaperek)
38-
- me
3935

40-
A special thank to Jozef for having maintained this project with passion and diligence until the birth of version v1.0 and not least for allowing me to take the reins of all this.
36+
A special thank to Jozef for having maintained this project with passion and diligence until the birth of version v0.19.0 and not least for allowing me to take the reins of all this.
4137
A special thank to [Mathieu Hinderyckx](https://github.com/mhindery) for having give an important contribution to v1.0.
4238
I'd like to thank all the contributors, one by one, for the color and creativity with which they have enriched this project and will continue to do so.

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ def read(*rnames):
2626
name='djangosaml2',
2727
version='1.1.0',
2828
description='pysaml2 integration for Django',
29-
long_description=read('README.rst'),
29+
long_description=read('README.md'),
30+
long_description_content_type='text/markdown',
3031
classifiers=[
3132
"Development Status :: 5 - Production/Stable",
3233
"Environment :: Web Environment",

0 commit comments

Comments
 (0)