-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (36 loc) · 1.12 KB
/
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
34
35
36
37
from glob import glob
from setuptools import find_packages, setup
setup(
name="jupyterhub-chameleon",
version="2.0.18",
description="Chameleon extensions for JupyterHub",
url="https://github.com/chameleoncloud/jupyterhub-chameleon",
author="Jason Anderson",
author_email="[email protected]",
license="MIT",
packages=find_packages(),
install_requires=[
"dockerspawner",
"jupyterhub",
"keystoneauth1",
"oauthenticator",
"python-keystoneclient",
"tornado",
"traitlets",
],
entry_points={
"jupyterhub.authenticators": [
"chameleon = jupyterhub_chameleon.authenticator.keycloak:ChameleonKeycloakAuthenticator",
"openstack_oauth = jupyterhub_chameleon.authenticator.openstack_oauth:OpenstackOAuthenticator",
],
"jupyterhub.spawners": [
"chameleon = jupyterhub_chameleon.spawner:ChameleonSpawner",
],
},
data_files=[
(
"share/jupyterhub_chameleon/templates",
glob("share/jupyterhub_chameleon/templates/*.html"),
),
],
)