I'm working on a Python library, which I have installed in my local virtualenv for testing. I have several dependencies installed with pip. When I do
$ pip freeze > requirements.txt
it adds my current project like so:
-e git+git@github.com:path/to/my/project@somehash#egg=lib-master
Which I have to manually remove - my project doesn't actually depend on itself. Is it possible to pass a parameter to pip that says, "Hey, ignore this/these kinds of packages?"