Blender 2.8 : Top menubar add menu - bl_info location information

Hi,

I am writing a series of menu/submenu and want to find out what location text I should use in bl_info for it to register at the top bar

Screenshot from 2020-08-06 15-01-41

If there is a working example I can refer to, that would be great too.

Cheers

bl_info is human readable text that appears while enabling an add-on in preferences as it is written in __init__.py. To add menus or to items to menus, see https://docs.blender.org/api/current/bpy.types.Menu.html

Example I found on GitHub:
https://github.com/LilacDogoo/blender_neptools/blob/b28464465f6f4592f0ff118b9ef9cc334a1b1879/nep_tools/init.py

Thanks. The information help me resolved my menu registration.