python-license-check icon indicating copy to clipboard operation
python-license-check copied to clipboard

Check python packages from requirement.txt and report issues

Results 21 python-license-check issues
Sort by recently updated
recently updated
newest added

Packages on the python package index specify license information in one of two or both places: 1. As part of the trove classifiers 2. As metadata In some packages, the...

We are currently having an issue with `liccheck` and version `17.3.0` of `pyrsistent`. Liccheck always flags the package as unknown, due to the fact that there is a `\r` in...

Library has following license metadata: ``` License: X Proprietary Classifier: License :: Other/Proprietary License ``` And `liccheck.ini` file has following authorized license in it: ``` [Licenses] authorized_licenses: x proprietary ```...

[`poetry`](https://poetry.eustace.io/) is a Python package manager that is gaining momentum as an alternative to `pip`. It provides a concrete `poetry.lock` describing the resolved dependencies of a project. Would it make...

I'd like to be able to only allowlist/blocklist specific licenses by their SPDX identifiers (e.g. `Apache-2.0`), as opposed to the various forms that pop up in packages: ``` apache 2.0...

I want to include liccheck into a CI pipeline. It would be nice if it created a formatted output. I propose to add a flag `--report-to-stdout` which would create this...

I get the following error when I try to run `liccheck -s strategy.ini -r requirements.txt`: ``` gathering licenses... Traceback (most recent call last): File "/home/egegunes/Dev/arcelik/3d-backend/venv/bin/liccheck", line 11, in load_entry_point('liccheck==0.3.12', 'console_scripts',...

Let's say you have a project which uses `fluent-logger`, `stevedore`, and `typed-ast`. These three all have an apache license, but running liccheck against them looks like this: ``` fluent-logger (0.9.6):...

Add an option to get a report of all dependencies with their license, ideally as HTML but text would be sufficient, too. The report should include the name of the...

help wanted

Add an API and config to map several license "keys" (i.e. `apache`, `apache 2.0` and `apache 2`, `apl2`) to a single canonical name (example: `Apache License v2`). For the HTML...

help wanted