Metadata-Version: 2.4
Name: flicker-detector
Version: 1.0.0
Summary: Flicker / flash anomaly detector. Use extra [cpu] for the Windows x64 CPU backend; [gpu] will be added when flicker-detector-gpu is published.
Author: internal
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Environment :: Console
Classifier: Topic :: Multimedia :: Video
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Provides-Extra: cpu
Requires-Dist: flicker-detector-cpu<2,>=1.0.0; (platform_system == "Windows" and platform_machine == "AMD64") and extra == "cpu"

# flicker-detector

Umbrella package on PyPI. Install the **CPU** backend with `[cpu]` (same command names as the future GPU wheel).

## Install (Windows x64)

```powershell
py -m pip install "flicker-detector[cpu]"
```

After install, use:

- `flicker-detector` — local detection CLI  
- `flicker-detector-server` — web UI + HTTP API  
- `flicker-detector-client` — submit jobs to a running server  

### GPU backend (planned)

When **`flicker-detector-gpu`** is published, this package will gain a **`[gpu]`** extra (same three commands, different binaries). Until then, only `[cpu]` is available. Use **either** CPU or GPU extra, never both — script names overlap.

### Direct backend only

```powershell
py -m pip install flicker-detector-cpu
```

Same commands as with `[cpu]`; skips this umbrella package.
