From c3d6c4e3bb48f3dff4c35718de331e612515de38 Mon Sep 17 00:00:00 2001 From: Patrick Steffes Date: Thu, 12 May 2022 14:59:45 -0400 Subject: [PATCH] require ldap3 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 11d090e..864a490 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setuptools.setup( description='drf-simplejwt but authenticates an IdP access token.', long_description=long_description, long_description_content_type='text/markdown', - url='https://gitlab.umich.edu/psteffes/drf_simplejwt_with_oidc', + url='https://gitlab.umich.edu/its-inf-iam/drf_simplejwt_with_oidc', packages=setuptools.find_packages(), classifiers=[ 'Programming Language :: Python :: 3', @@ -20,6 +20,7 @@ setuptools.setup( python_requires='>=3.6', install_requires=[ 'djangorestframework-simplejwt>=4.7.2', + 'ldap3>=2.9.1', 'requests>=2.26', ] ) -- GitLab