fix: fix entrypoint configuration

This commit is contained in:
Alexander Engelsberger 2023-03-02 17:29:23 +00:00
parent 8ecf9948b2
commit 08db94d507
No known key found for this signature in database
GPG Key ID: 1FF2A4E5A222AFBF

View File

@ -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,
)