Metadata-Version: 2.4
Name: ditidy
Version: 2.1.0
Summary: Formatting utility for C
Project-URL: Homepage, https://github.com/diodeiot/ditidy
Project-URL: Issues, https://github.com/diodeiot/ditidy/issues
Author-email: Kadir Sevil <kadir.sevil@diodeiot.com>
License-Expression: GPL-3.0-or-later
License-File: LICENSE
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3
Requires-Dist: click<9,>=8.1
Requires-Dist: flake8-import-order
Requires-Dist: pyyaml<7,>=6
Description-Content-Type: text/markdown

# Di Tidy

This project is a formatting/linting utility for various languages

## Development

```sh
pip install -e .
```

To run the specific module

```sh
export PYTHONPATH=src
python -m ditidy.[module name]
```

## Linting

```sh
hatch run lint
```

## Testing

```sh
hatch test
```

## Releasing

```sh
python -m build
twine upload --repository pypi dist/*
```
