mirror of
https://github.com/jupyterhub/the-littlest-jupyterhub.git
synced 2025-12-18 21:54:05 +08:00
- 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
28 lines
720 B
Python
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",
|
|
]
|
|
},
|
|
)
|