Metadata-Version: 2.4
Name: mdformat-astyle
Version: 3.6.10
Summary: Artistic Style is a source code indenter, formatter, and beautifier for the C, C++, C++/CLI, Objective‑C, C# and Java programming languages
Keywords: formatter
Author: Jim Pattee, Tal Davidson
Author-Email: Andre Simon <as@andre-simon.de>
License-Expression: GPL-3.0-or-later
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Build Tools
Project-URL: Bug Report, https://github.com/Freed-Wu/astyle-wheel/issues
Project-URL: Download, https://github.com/Freed-Wu/astyle-wheel/releases
Project-URL: Homepage, http://astyle.sourceforge.net
Project-URL: Source, https://github.com/Freed-Wu/astyle-wheel
Requires-Python: >=3.8
Provides-Extra: dev
Requires-Dist: pytest-cov; extra == "dev"
Description-Content-Type: text/markdown

# Astyle python binding

This project provides python binding for
[astyle](https://gitlab.com/saalen/astyle).

## Install

```shell
pip install mdformat-astyle
```

## API

```python
from astyle.binding import astyle

astyle("  #include <Python.h>", "indent-classes")
```

## Usage

``````markdown
```c astyle=mode=kr,indent=2
#include <Python.h>
```
``````

```sh
pip install mdformat mdformat-astyle
mdformat
```

### Alternatives

- [pyastyle](https://github.com/timonwong/pyastyle): stop maintaining.
