Metadata-Version: 2.3
Name: beaninput
Version: 1.0.0
Summary: Utilities for polling input devices (keyboard, mouse, controller)
Keywords: input,polling,keyboard,mouse,controller,gamepad
Author: Wyatt Rosinski
License: MIT License
         
         Copyright (c) 2026 Wyatt Rosinski
         
         Permission is hereby granted, free of charge, to any person obtaining a copy
         of this software and associated documentation files (the "Software"), to deal
         in the Software without restriction, including without limitation the rights
         to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         copies of the Software, and to permit persons to whom the Software is
         furnished to do so, subject to the following conditions:
         
         The above copyright notice and this permission notice shall be included in all
         copies or substantial portions of the Software.
         
         THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
         SOFTWARE.
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: System :: Hardware
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: pydantic>=2.0
Requires-Dist: pynput>=1.7
Requires-Dist: pygame>=2.0
Requires-Dist: pywin32 ; sys_platform == 'win32'
Requires-Dist: pyobjc-framework-quartz ; sys_platform == 'darwin'
Requires-Dist: evdev ; sys_platform == 'linux'
Requires-Dist: pytest>=8 ; extra == 'dev'
Requires-Python: >=3.11
Project-URL: Home, https://github.com/Beansyboy221/beaninput
Project-URL: Source, https://github.com/Beansyboy221/beaninput
Project-URL: Tracker, https://github.com/Beansyboy221/beaninput/issues
Project-URL: Documentation, https://github.com/Beansyboy221/beaninput/tree/main/docs/usage.md
Provides-Extra: dev
Description-Content-Type: text/markdown

# BeanInput

**Utilities for polling input devices (keyboard, mouse, controller).**

## Overview

BeanInput provides a unified framework for polling human input devices at high frequency. It supports keyboard keys, mouse buttons and movement, and gamepad buttons and axes across Windows, macOS, and Linux.

## Installation

```bash
pip install beaninput
```

### Documentation

Read the [Usage Guide](https://github.com/Beansyboy221/beaninput/tree/main/docs/usage.md) to understand all of the features of BeanInput and how to use them.
