https://github.com/zetxtech/wheeledit
https://github.com/zetxtech/wheeledit
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zetxtech/wheeledit
- Owner: zetxtech
- License: mit
- Created: 2025-04-27T21:08:01.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-28T14:50:31.000Z (about 1 year ago)
- Last Synced: 2026-02-20T17:12:25.492Z (4 months ago)
- Language: Python
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WheelEdit
A tool for editing Python wheel packages without modifying the internal package structure.
## Installation
```
pip install wheeledit
```
## Features
- Display wheel metadata
- Edit package metadata and repack
- Rename packages
- Process multiple wheel files or directories
**NOTE**: WheelEdit can not rename the internal packages and modules.
## Usage
### Edit Metadata
1. Extract the metadata to a file
2. Edit the file
3. Apply the changes
```bash
# Extract metadata
wheeledit example-1.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl > metadata.txt
# Edit metadata.txt with your preferred editor
# Apply changes
wheeledit example-1.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl --metadata metadata.txt
```
### Rename Package
```bash
wheeledit example-1.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl --rename new-package-name
```
## License
MIT