Skip to content

Commit f0b5795

Browse files
author
wesuuu
committed
Updated setup.py
1 parent 2b07ad2 commit f0b5795

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,4 @@ RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - && \
1717
npm install -g configurable-http-proxy
1818

1919
RUN pip install --upgrade pip && \
20-
pip install -r requirements.txt && \
2120
pip install -e .

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ python3 -m venv .
5555
source bin/activate
5656
pip install -r requirements.txt
5757

58+
# OPTIONAL, install package if developing source code
59+
pip install -e .
60+
5861
# start the docker containers
5962
docker compose up -d
6063
```

requirements.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
jupyterhub
21
pytest
3-
traitlets>=5.0.0
4-
notebook
52
selenium
63
flake8

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,8 @@ def get_description():
5050
author='Wesley Uykimpang',
5151
url='https://github.com/ucsd-ets/jupyterhub-saml-auth',
5252
packages=find_packages(),
53-
install_requires=['python3-saml'])
53+
install_requires=[
54+
'python3-saml',
55+
'jupyterhub',
56+
'traitlets>=5.0.0',
57+
'notebook'])

test/test_authenticator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from jupyterhub_saml_auth.authenticator import SAMLAuthenticator
21
import unittest
32
from selenium import webdriver
43
from selenium.webdriver.support.wait import WebDriverWait

0 commit comments

Comments
 (0)