Metadata-Version: 2.1
Name: pyupgradex
Version: 0.0.1
Summary: This is a tool that provides advanced features of pyupgrade.
Home-page: https://github.com/mrlyc/pyupgradex
Author: MrLYC
Author-email: github@m.mrlyc.com
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: pyupgrade (>=3)
Project-URL: Documentation, https://mrlyc.github.io/pyupgradex/
Project-URL: Repository, https://github.com/mrlyc/pyupgradex
Description-Content-Type: text/markdown

## 使用说明

pyupgradex 提供了一个命令行工具，支持以下子命令：

### plugins
列出所有注册的插件模块名称。

```bash
python -m pyupgradex plugins
```

### run
运行 pyupgrade，并支持禁用指定插件。

```bash
python -m pyupgradex run --disable-plugins plugin_name1 plugin_name2 -- other_args
```

`--disable-plugins` 参数用于禁用指定的插件，`other_args` 是传递给 pyupgrade 的额外参数。

