Metadata-Version: 2.4
Name: remold
Version: 0.1.1
Summary: Structural search and rewrite for Python source, with ast-grep pattern rules and LibCST matcher transforms
Author: remold contributors
License: Apache-2.0
Project-URL: Homepage, https://github.com/AnswerDotAI/remold
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: libcst
Requires-Dist: ast-grep-py
Provides-Extra: dev
Requires-Dist: fastship; extra == "dev"
Requires-Dist: build; extra == "dev"
Requires-Dist: twine; extra == "dev"
Dynamic: license-file

# remold

Concisely reshape Python code with [LibCST](https://github.com/Instagram/LibCST) or [ast-grep](https://ast-grep.github.io/).

```bash
pip install remold
```

Usage docs live in the module docstring, where remold's main users (AI agents) read them: `doc(remold)` in a pyskills session, or `help(remold)` anywhere.

## Development

```bash
pip install -e .[dev]
pytest -q
```

Version lives in `remold/__init__.py` as `__version__`; bump with `ship-bump`. Release with `ship-gh` and `ship-pypi`.
