There's many resources floating around on how to hook up your own Python shell with autocompletion (using readline, or rcompleter) but none seem to mention how to do this for the command wrappers generated for pkg_resources' console_scripts
. Is it possible to have pip register autocompletion for an installed package's commands?
> pip install my_pkg
> my_pkg <autocompletion>
I register the my_pkg
command like this in setup.py:
setuptools.setup(
# ...
entry_points={"console_scripts": ["my_pkg = my_pkg:cli"]}
)
you must mkdir dir in root
like this