this is my setup.py file for installing my python program, after installing using python3 setup.py install entry in my program was created with the name testmain , when I did pip3 freeze , it showed abc==0.1 in its output, so I deleted it with pip3 using pip3 uninstall abc , although the packages were removed, there was still a testmain entry in my path, is there a way that pip3 also deletes this entry during uninstallation or in any other way that I can uninstall my programs in the same scenario?
from setuptools import setup setup(name='abc', version='0.1', description='test', url='http://github.com/rjdp', author='rajdeep', author_email=' rajdeep.sharma@rtcamp.com ', license='MIT', packages=['cli'], install_requires=[ 'cement', ], entry_points = { 'console_scripts': ['testmain=cli.abc:main'], }, zip_safe=False)
source share