Files
the-littlest-jupyterhub/integration-tests/plugins/simplest/setup.py

10 lines
158 B
Python
Raw Normal View History

2018-08-12 09:47:32 -07:00
from setuptools import setup
setup(
name="tljh-simplest",
entry_points={"tljh": ["simplest = tljh_simplest"]},
py_modules=["tljh_simplest"],
)