pydeps
pydeps copied to clipboard
`--exclude` option not working
I'm trying to generate the graph for a project and want to exclude any "third-party" libraries.
The command I'm using looks something like this:
pydeps myproject --exclude="ddtrace*,openai*"
However, I still see a ton of ddtrace and openai nodes in the output of the graph. Am I missing something here?
Try
pydeps myproject --exclude "ddtrace*" "openai*"