Metadata-Version: 2.4
Name: aminoac
Version: 0.2.0
Summary: A module that modifies CTRL-C behavior to play audio
Home-page: https://github.com/kennylimz/aminoac
Author: kennylimz
Author-email: 
License: MIT
Project-URL: Homepage, https://github.com/kennylimz/aminoac
Project-URL: Repository, https://github.com/kennylimz/aminoac
Project-URL: Issues, https://github.com/kennylimz/aminoac/issues
Keywords: audio,signal,ctrl-c,pygame,mp3
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
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
Classifier: Topic :: Multimedia :: Sound/Audio
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: pygame
Dynamic: home-page
Dynamic: requires-python

# aminoac

A Python package that modifies CTRL-C behavior to play audio before exiting.

## Installation

```bash
pip install aminoac
```

## Usage

Simply import the package and the CTRL-C behavior is automatically modified:

```python
import aminoac

# Now when you press CTRL-C, it will play amns.mp3 before exiting
```

## What it does

- Automatically sets up a signal handler for SIGINT (CTRL-C)
- When CTRL-C is pressed, plays the `amns.mp3` audio file
- Then exits normally with the default signal handler
