I have developed a python script that makes use of a package hosted in PyPI. My code basically imports this package and uses some of its functions, together with some more functionality I developed. Now I want to distribute my script together with a requirements.txt file, so other people can use it, let's say commercially or through a permissive license such as MIT. The catch is: the package I'm importing has a GNU GPL 2 license.
The question basically is: even if I am not distributing or modifying the GNU GPL package in any way, am I forced to apply the GNU GPL license to my script, because of the dependency?
Note again that the software I will distribute is just the script and the list of dependencies I developed, so no GNU GPL software is included in my distribution. However, the final user does need to install the GNU GPL software as a requisite to run my script.
I have gone through the whole text of the license, and also through quite a few questions around here, but can't still find a clear-cut answer.
