Metadata-Version: 2.4
Name: is-windows-system
Version: 0.0.1
Summary: check if current system is windows.
License: MIT
License-File: LICENSE
Author: GGN_2015
Author-email: neko@jlulug.org
Requires-Python: >=3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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: Programming Language :: Python :: 3.14
Description-Content-Type: text/markdown

# is_windows_system
check if current system is windows.

## Install

```bash
pip install is_windows_system
```

## Usage

```python
from is_windows_system import is_windows_system

# True, False
print(is_windows_system())
```

