-
-
Notifications
You must be signed in to change notification settings - Fork 563
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Recognize Python packages (wheels, eggs, various dist as archives or installed) #253
Comments
Signed-off-by: Philippe Ombredanne <[email protected]>
Signed-off-by: Philippe Ombredanne <[email protected]>
Signed-off-by: Philippe Ombredanne <[email protected]>
Signed-off-by: Philippe Ombredanne <[email protected]>
Signed-off-by: Philippe Ombredanne <[email protected]>
Signed-off-by: Philippe Ombredanne <[email protected]>
Just for the record, while PR #421 is thankfully merged, support for recognizing Python packages based on |
The basic is there. Addintional updates will be for post 2.0 |
Okay, this is now useable for I'm planning to add read-only |
@jayfk Thanks++
|
Please refer to this: https://pythonhosted.org/pkginfo/distributions.html#introspecting-unpacked-source-distributions Our goal is to report first installed Python packages, this is likely a job for pkg_info instead of dparse |
Signed-off-by: Li <[email protected]>
This can be another tool: https://pypi.org/project/wheel-inspect/ |
Signed-off-by: Li <[email protected]>
Signed-off-by: Li <[email protected]>
Signed-off-by: Li <[email protected]>
Signed-off-by: Li <[email protected]>
Signed-off-by: Li <[email protected]>
Signed-off-by: Li <[email protected]>
Signed-off-by: Li <[email protected]>
Signed-off-by: Li <[email protected]>
Signed-off-by: Li <[email protected]>
This is all done now and merged in develop. |
Fixes #253 This patch contains these changes: * Add 50+ new Ruby tests for method name/operator override matching. * Unicode method names are now supported (#253). * `=` method name postfixes are now supported. * These operator overrides are now supported: `<`, `<=`, `!` `!@`, `~@`, `!`, `!=`, `!~`, `=~` * The `<>` "operator" override is removed. It appears that this was a typo in the regular expression (`<=?>` should have been `<=>?`). Syntax verified with https://docs.ruby-lang.org/en/2.7.0/syntax/methods_rdoc.html
scancode must be able to detect Python packages used by in a project by parsing files like
setup.py
,.whl
files,.eggs
files,requirements.txt
orpip_requirements.txt
.The text was updated successfully, but these errors were encountered: