Metadata-Version: 2.4
Name: auditwheel-get-external-deps
Version: 0.0.1
Summary: List external dependencies with auditwheel.
Author-email: Andrew Tapia <andrew.tapia@uky.edu>
License-Expression: MIT
Project-URL: Homepage, https://github.com/actapia/auditwheel-get-external-deps
Project-URL: Bug Tracker, https://github.com/actapia/auditwheel-get-external-deps
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: auditwheel
Dynamic: license-file

# auditwheel-get-external-deps

This is a small program that gets the external dependencies of a Python wheel
using [`auditwheel`](https://github.com/pypa/auditwheel); it is suitable for
determining what dependencies `auditwheel repair` could "graft" into the
repaired wheel.

This package itself depends on `auditwheel` and also includes some code based on
`auditwheel`'s but is *not* affiliated with the authors of that software.

## Installation

```python
python -m pip install auditwheel-get-external
```

## Usage

```python
python -m auditwheel-get-external-deps WHEEL --plat PLAT
```

To use `auditwheel-get-external-deps`, provide a Python wheel containing a
native Python extension and the target platform that would be used with
`auditwheel` repair.

