The top_level name provided in the dist-info file conflicts with another Pypi package named consolemenu.
This is causing a problem when using "uv pip" resulting in the other package installing over the top of this package. You can specifically install console_menu, but uv then auto installs the other package into the same file space of console_menu.
This can cause a previous issue reported where the relative imports to top level dont work. Really weird.
In uv this can be fixed by ensuring the specific version of console_menu is required.
Thanks, great work.
The top_level name provided in the dist-info file conflicts with another Pypi package named consolemenu.
This is causing a problem when using "uv pip" resulting in the other package installing over the top of this package. You can specifically install console_menu, but uv then auto installs the other package into the same file space of console_menu.
This can cause a previous issue reported where the relative imports to top level dont work. Really weird.
In uv this can be fixed by ensuring the specific version of console_menu is required.
Thanks, great work.