forked from jupyterhub/ldapauthenticator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (17 loc) · 648 Bytes
/
setup.py
File metadata and controls
23 lines (17 loc) · 648 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
version = "1.3.1.dev"
with open("./ldapauthenticator/__init__.py", "a") as f:
f.write("\n__version__ = '{}'\n".format(version))
setup(
name="jupyterhub-ldapauthenticator",
version=version,
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"],
install_requires=["jupyterhub", "ldap3", "tornado", "traitlets"],
)