Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 430 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 430 Bytes

distutils-licenses

A command for setup.py to print the licenses of installed packages.

To use, add distutils-licenses to the setup_requires keyword arg to the setup call in your setup.py:

setup(
    # ...
    setup_requires=['distutils-licenses'],
    # ...
)

After modifying your setup.py, you will have a licenses command available to you:

python setup.py licenses