This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# _______________________ | |
# Just a simple script i use for generating a requirements.txt file per python project.. | |
# _______________________ | |
#Selecting a Python file through a GUI dialog. | |
#Parsing all imports, including those from custom modules. | |
#Excluding standard library modules and custom project modules. | |
#Including only third-party packages with their installed versions. | |
#Handling existing requirements.txt files by creating backups with incremented suffixes. |