When running pip list
or pip freeze
, is there a way to emit additional details for each package?
Further details:
In our project, we must report the packages we're using, their origin and their license. What I'm trying to retrieve would be similar to e.g.:
Package Version PyPi Link License
------------- ------- ------------------------------- --------------------------
Flask 1.1.2 https://pypi.org/project/Flask/ BSD License (BSD-3-Clause)
Others... 1.2.3 ... ...
Entries I'm trying to find besides PyPi Link
:
- PyPi Link
- Homepage (
https://palletsprojects.com/p/flask/
in case of flask) - Code (
https://github.com/pallets/flask
in case of flask) - License (
BSD License (BSD-3-Clause)
in case of Flask)