Metadata-Version: 2.1
Name: code-commenter
Version: 0.3.0
Summary: Lightweight tool to generate decorative code comments to enhance readability
License: MIT
Author: Tristan Naidoo
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Requires-Dist: pyperclip (>=1.8.2,<2.0.0)
Description-Content-Type: text/markdown

# Code Commenter
Generate stylized code comment headers to help make your code more readable

## Basic Usage
To print a comment header to the console run
```bash
generate-comment -t My_Script_Heading
```
and if you wish to have it copied to your clipboard, add the `-c` flag
```bash
generate-comment -t My_Script_Heading -c
```
Code commenter supports multiple language comments. The default is Python but if you wish to generate a comment for example, Golang, set the `-lang` flag.
```bash
generate-comment -t My_Script_Heading -lang GO
```

