Metadata-Version: 2.4
Name: simple-mouse-jiggler
Version: 0.1.0
Summary: Jiggle the mouse to prevent the computer from going to sleep.
Project-URL: Documentation, https://github.com/yt0123/mouse-jiggler
Project-URL: Source, https://github.com/yt0123/mouse-jiggler/blob/main/src
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
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 :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: click~=8.3
Requires-Dist: rich~=15.0
Requires-Dist: PyAutoGUI~=0.9

# Mouse Jiggler

This is a simple mouse jiggler application that simulates mouse movement to prevent the computer from going to sleep or activating the screensaver.
It is written in Python and uses the `pyautogui` library to control the mouse.

## Getting Started

```bash
pip install simple-mouse-jiggler
```

## Usage

To start the mouse jiggler, simply run the following command in your terminal:

```bash
jiggle -t 60
```

## Development

To set up the development environment, clone the repository and install the dependencies:

```bash
python -m venv venv
source venv/bin/activate  # On Windows, use `venv\Scripts\activate`
pip install -e .
```
