When uploading to GitHub one would want to include a requirements.txt file. I have created a virtual environment and so pip3 freeze lists only the packages I installed during the project development. However I had also installed pylint (suggested by VS Code) which I wouldn't want on the requirements file. Pylint isn't listed in a single entry when I use pip3 freeze. So is there any way to remove pylint and related stuff from the requirements? Worst case can anyone list out all the pylint stuff so I can manually remove them from requirements file?