mirror of
https://github.com/jupyterhub/the-littlest-jupyterhub.git
synced 2025-12-18 21:54:05 +08:00
8 lines
156 B
Python
8 lines
156 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="tljh-simplest",
|
|
entry_points={"tljh": ["simplest = tljh_simplest"]},
|
|
py_modules=["tljh_simplest"],
|
|
)
|