add debugpy entry point

This commit is contained in:
Adam Yoblick 2024-07-25 15:59:49 -05:00
parent 6e8e5becb2
commit 853cc05f50

View file

@ -195,5 +195,7 @@ if __name__ == "__main__":
ext_modules=ExtModules(),
has_ext_modules=lambda: True,
cmdclass=cmds,
# allow the user to call "debugpy" instead of "python -m debugpy"
entry_points={"console_scripts": ["debugpy = debugpy.server.cli:main"]},
**extras
)