Metadata-Version: 2.4
Name: ss_cyc
Version: 0.1.2
Summary: A Python package scaffold for ss_cyc.
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: keyboard>=0.13.5
Requires-Dist: numpy>=1.26
Requires-Dist: pywin32>=312; platform_system == "Windows"

# ss_cyc

Python package scaffold for `ss_cyc`.

## Install

Install from PyPI with uv:

```bash
uv add ss_cyc
```

Install directly from a git repository with uv:

```bash
uv add "ss_cyc @ git+https://github.com/<owner>/<repo>.git"
```

Install directly from a git repository with pip:

```bash
pip install "git+https://github.com/<owner>/<repo>.git"
```

Install locally for development:

```bash
pip install -e .
```

## Usage

Use `WindowCapture` from Python:

```python
from ss_cyc import WindowCapture

capture = WindowCapture()
```

You can also import it from the capture module:

```python
from ss_cyc.capture import WindowCapture
```

Run as a console command:

```bash
ss-cyc
```

Run as a Python module:

```bash
python -m ss_cyc
```
