I am making a CLI in python using Click. This is my entry point script:
entry_points='''
[console_scripts]
noo=noo.noodle:downloader
''',
I have made a Package, I have added import noodle in the __init__.py file so that it could import the file noodle which contains the function downloader() - which needs to be executed by the entry_point script. But when I install the setup.py, I get an Error: ImportError: No module named noo.noodle when I run noodle --help in terminal?