Skip to content

Commit

Permalink
setup.py fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
peppelinux committed Nov 24, 2021
1 parent babee1e commit f0370a9
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
README = readme.read()


with open(os.path.join(os.path.dirname(__file__), 'requirements.txt')) as requirements:
REQUIREMENTS = requirements.read()
#with open(os.path.join(os.path.dirname(__file__), 'requirements.txt')) as requirements:
# REQUIREMENTS = requirements.read()


setup(
name="oidc_provider",
version='2.1.0',
version='2.1.1',
description="django oidc provider",
long_description=README,
long_description_content_type='text/markdown',
Expand All @@ -40,6 +40,9 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules"],
install_requires=REQUIREMENTS,
install_requires=[
"Django>=3.1,<4.0",
"oidcop==2.1.0"
],
zip_safe=False,
)

0 comments on commit f0370a9

Please sign in to comment.