[05:35:53] <tdsmith> is there a way to get the dependencies for requests[security] out of pkg_resources?
[10:14:35] <nanonyme> Wasn't the nicer option "python get-pip.py --user" or something?
[10:22:01] <[Tritium]> `curl -s "https://bootstrap.pypa.io/get-pip.py" | python - --user` is in muscle memory >.>
[10:25:19] <pombreda> tdsmith: there should be a way to get to them. But what would be your context? Once installed any extra_require may no longer be available? https://github.com/kennethreitz/requests/blob/58d855e1939cb798bc94f8a21e404f17213e9e92/setup.py#L94 .... though they exist in the wheel metadata.json So the question may be rather: how to get the metadata of an installed wheel?
[10:25:41] <pombreda> and once you have that, you should be able to get to the deps
[10:38:40] <pombreda> tdsmith: https://pypi.python.org/pypi/pkginfo may help there