Skip to content

Commit 007fa6c

Browse files
authored
Merge pull request #1 from makinacorpus/deploy
Deploy
2 parents a8aba23 + 31aa74f commit 007fa6c

File tree

5 files changed

+10
-11
lines changed

5 files changed

+10
-11
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ build/
66
docs/_build
77
geckodriver.log
88
.python-version
9+
dist/

MANIFEST.in

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
include LICENSE
2+
include django_pyoidc/VERSION
3+
include django_pyoidc/**/*.py

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<p align="center">
55
<a href="https://django-pyoidc.readthedocs.io">
6-
<img src="https://img.shields.io/readthedocs/django-pyoidc" />
6+
<img src="https://readthedocs.org/projects/django-pyoidc/badge/?version=main" />
77
</a>
88
</p>
99

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ readme = "README.md" # Optional
44
[build-system]
55
# These are the assumed default build requirements from pip:
66
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
7-
requires = ["setuptools>=43.0.0", "wheel"]
8-
build-backend = "setuptools.build_meta"
7+
requires = ["setuptools>=61.0.0", "wheel"]
8+
build-backend = "setuptools.build_meta"

setup.py

+3-8
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,22 @@
77

88
HERE = os.path.abspath(os.path.dirname(__file__))
99

10-
with open(os.path.join(HERE, "README.md")) as readme_file, open(
11-
os.path.join(HERE, "CHANGES.md")
12-
) as changes_file, open(os.path.join(HERE, "django_pyoidc", "VERSION")) as version_file:
13-
README = readme_file.read()
14-
CHANGES = changes_file.read()
10+
with open(os.path.join(HERE, "django_pyoidc", "VERSION")) as version_file:
1511
VERSION = version_file.read().strip()
1612

1713
# from distutils.core import setup
1814

1915
setup(
2016
name="django-pyoidc",
21-
version="0.1",
17+
version=VERSION,
2218
description="Authenticate your users using OpenID Connect (OIDC)",
2319
author="Makina Corpus",
2420
author_email="[email protected]",
2521
url="https://gitlab.makina-corpus.net/pfl/django-pyoidc",
2622
python_requires=">=3.7",
2723
packages=find_packages(),
2824
install_requires=[
29-
"oic==1.6.0",
25+
"oic==1.7.0",
3026
"django>=3.2",
3127
"jsonpickle",
3228
"jwt",
@@ -40,7 +36,6 @@
4036
"Framework :: Django",
4137
"Development Status :: 5 - Production/Stable",
4238
"Programming Language :: Python :: 3 :: Only",
43-
"Programming Language :: Python :: 3.7",
4439
"Programming Language :: Python :: 3.8",
4540
"Programming Language :: Python :: 3.9",
4641
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)