pivotal / LicenseFinder

Find licenses for your project's dependencies.
MIT License
1.7k stars 337 forks source link

Support for Python Poetry Projects #943

Open dflock opened 1 year ago

dflock commented 1 year ago

Python projects which use Poetry instead of pip for package management etc... are currently not supported by LicenseFinder.

Poetry projects have two files which specify dependencies:

LicenseFinder support for Poetry projects would be very good to have - Poetry is becoming more and more popular for Python projects.

cf-gitbot commented 1 year ago

We have created an issue in Pivotal Tracker to manage this. Unfortunately, the Pivotal Tracker project is private so you may be unable to view the contents of the story.

The labels on this github issue will be updated when the story is started.

johannesE commented 1 year ago

I used poetry export --without-hashes --format=requirements.txt > requirements.txt and then pip install -r requirements.txt followed by license_finder --python-version=3 to get my list. Maybe this helps someone..