From 08db94d507fa10bb32c5f35c8a8a2153bb9da0d2 Mon Sep 17 00:00:00 2001 From: Alexander Engelsberger Date: Thu, 2 Mar 2023 17:29:23 +0000 Subject: [PATCH] fix: fix entrypoint configuration --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 7aa3f16..c2a4df8 100644 --- a/setup.py +++ b/setup.py @@ -91,9 +91,9 @@ setup( "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules", ], - #entry_points={ - # "prototorch.plugins": f"{PLUGIN_NAME} = prototorch.{PLUGIN_NAME}" - #}, + entry_points={ + "prototorch.plugins": f"{PLUGIN_NAME} = prototorch.{PLUGIN_NAME}" + }, packages=find_namespace_packages(include=["prototorch.*"]), zip_safe=False, )