Files
the-littlest-jupyterhub/setup.py
Min RK a58956f14b update for traefik v2, treafik-proxy v1
- tls config is no longer allowed in static config file, add separate dynamic config
- no longer need to persist auth config ourselves (TraefikProxy handles this)
- make sure to reload proxy before reloading hub in tests
2023-05-16 11:47:23 +02:00

28 lines
720 B
Python

from setuptools import find_packages, setup
setup(
name="the-littlest-jupyterhub",
version="1.0.0.dev0",
description="A small JupyterHub distribution",
url="https://github.com/jupyterhub/the-littlest-jupyterhub",
author="Jupyter Development Team",
author_email="jupyter@googlegroups.com",
license="3 Clause BSD",
packages=find_packages(),
include_package_data=True,
install_requires=[
"ruamel.yaml==0.17.*",
"jinja2",
"pluggy==1.*",
"backoff",
"requests",
"bcrypt",
"jupyterhub-traefik-proxy==1.0.0b3",
],
entry_points={
"console_scripts": [
"tljh-config = tljh.config:main",
]
},
)