Add tests for the plugin mechanism

This commit is contained in:
yuvipanda
2018-08-12 09:47:32 -07:00
parent 841c25e1bd
commit 8b2980a20a
4 changed files with 96 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
from setuptools import setup
setup(
name="tljh-simplest",
entry_points={"tljh": ["simplest = tljh_simplest"]},
py_modules=["tljh_simplest"],
)