forked from jupyterhub/ldapauthenticator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 718 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 718 Bytes
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
from setuptools import setup
setup(
name="jupyterhub-ldapauthenticator",
version="1.3.3.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="yuvipanda@riseup.net",
license="3 Clause BSD",
packages=["ldapauthenticator"],
python_requires=">=3.7",
install_requires=[
"jupyterhub",
"ldap3",
"tornado",
"traitlets",
],
extras_require={
"test": [
"pytest",
"pytest-asyncio",
"pytest-cov",
],
},
)