forked from jupyterhub/ldapauthenticator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 918 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from setuptools import setup
setup(
name="jupyterhub-ldapauthenticator",
version="2.0.0.dev",
description="LDAP Authenticator for JupyterHub",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/jupyterhub/ldapauthenticator",
author="Yuvi Panda",
author_email="[email protected]",
license="3 Clause BSD",
packages=["ldapauthenticator"],
python_requires=">=3.9",
install_requires=[
"jupyterhub>=4.1.6",
"ldap3>=2.9.1",
"traitlets",
],
extras_require={
"test": [
"pytest",
"pytest-asyncio",
"pytest-cov",
],
},
entry_points={
"jupyterhub.authenticators": [
"ldap = ldapauthenticator:LDAPAuthenticator",
"ldapauthenticator = ldapauthenticator:LDAPAuthenticator",
],
},
)